我正在为我的问题寻找解决方案,我现在使用的代码将显示文件名而不是图片本身。我认为我的回声码有问题。
这是我正在使用的代码:
echo "<table class=showtable>";
echo "<tr>
<td class=show >".$row['ID']."</td>
<td class=show2>".$row['DateTime']."</td>
<td class=show3>".$row['Stock']."</td>
<td class=show4>".$typeArray[$row['Type']]."</td>
<td class=show5>".$tradeArray[$row['Trade']]."</td>
<td class=show5>".$row['Entry']."</td>
<td class=show5>".$row['Stoploss']."</td>
<td class=show5>".$row['Target1']."</td>
<td class=show5>".$row['Target2']."</td>
<td class=show6>".$row['Explination']."</td>
<td class=show7>'<img src='/trades.tiniduske.be/upload/'/>". print $row['Screenshot'] ." </td> </tr>";
echo "</table>";
答案 0 :(得分:0)
echo '<td class=show7><img src="/home/tiniduske/domains/tiniduske.be/public_html/trades/upload/ . $row['Screenshot'] . '"/> </td> </tr>';
答案 1 :(得分:0)
您需要指定webpath,例如www.yourdomain.com/path_to_image,其中path_to_images相对于您的Web根目录而不是您服务器上的文件系统路径。