douniangliao4327 2017-12-07 05:16
浏览 94
已采纳

如何用PHP变量作为src属性的值回显<img src [重复]

This question already has an answer here:

I am getting error when I try to echo image in PHP. Here is my code:

$sql = "SELECT id, title, filename FROM images";
$result = $conn->query($sql);


if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
    $pathx = "directory/images/";

    echo '
    <img src = "'$pathx'.'$row["filename"]'">
    ';
    //filenames in database end with appropriate image extensions like .png

}

And I am getting this error: Parse error: syntax error, unexpected '$pathx' (T_VARIABLE), expecting ',' or ';' in C:\xampp\htdocs\display.php on line 29

I have checked solutions from similar questions from here on Stackoverflow and implemented some of the accepted answers still my problem is not solved.

meanwhile something like the code below works well. So why is the one above not working?

echo'<img src = "directory/images/girl-g2109_5_720.jpg">';
</div>
  • 写回答

4条回答 默认 最新

  • dongzhan0624 2017-12-07 05:21
    关注

    Do like this

    $pathx = "directory/images/";
    $file = $row["filename"];
    
    echo '<img src="'.$pathx.$file.'">';
    

    Output

    <img src="directory/images/girl-g2109_5_720.jpg">
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?