Jump to content

Cant spot parse error


Lassie

Recommended Posts

you forgot the echo

 

<?php
$product_id=13;
?>
<a href="<?php echo 'show_book.php?product_id='.$product_id;?>">Order Now</a>

 

better still do it in this way

 

<?php
$product_id=13;
?>
<a href="show_book.php?product_id=<?php echo $product_id;?>">Order Now</a>

Link to comment
https://forums.phpfreaks.com/topic/78414-cant-spot-parse-error/#findComment-396810
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.