0

我正在为我的问题寻找解决方案,我现在使用的代码将显示文件名而不是图片本身。我认为我的回显代码有问题。

这是我正在使用的代码:

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>";
4

2 回答 2

0
echo '<td class=show7><img src="/home/tiniduske/domains/tiniduske.be/public_html/trades/upload/ . $row['Screenshot'] . '"/> </td> </tr>';
于 2012-10-29T15:55:07.170 回答
0

您需要指定 webpath,例如 www.yourdomain.com/path_to_image 其中 path_to_images 是相对于您的 web 根目录.. 而不是您服务器上的文件系统路径。

于 2012-10-29T15:55:07.653 回答