-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

Need a space between phpecho:

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

Also remove the quotes from the last echo:

<?php echo $text; ?>

Lol, and the first echo as well.

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 に答える