-2

I'm trying to set the src of an image to a value in a database but it doesnt seem to be working.. here's the lines in question,

<?php
echo "  $date<br/>"?>
        <img src="<?phpecho $image;?>"/><br/>
        <?php echo"$text

    ";   
?>

and the error:
Parse error: syntax error, unexpected T_VARIABLE in /home/a6349675/public_html/Blog.php on line 54

4

2 回答 2

2

phpecho之间需要一个空格:

<img src="<?php echo $image;?>"/><br/>

还要从最后一个回声中删除引号:

<?php echo $text; ?>

大声笑,还有第一个回声。

echo  $date; ?><\br>
于 2012-10-21T22:45:06.957 回答
1

你应该发现自己是一个很好的编辑器,然后它会在你的代码中显示语法错误。

此外,99% 的时间拥有整洁的代码会更容易发现错误。

<?php echo $date."<br/>"; ?>
<img src="<?php echo $image;?>"/><br/>
<?php echo $text; ?>

或者干脆

<?php 
echo $date.'<br/>',
     '<img src="'.$image.'"/><br/>',
     $text;
?>
于 2012-10-21T22:49:33.550 回答