I am trying to make a href but i keep having problems. If i do this
<?php echo '<a href = BannerIndex.php?id=$id>'.$row_ViewBanners['ID'].'</a>'; ?>
It works but the link is litral of id=$id and not id=4 for example
If i do
<?php echo "<a href = BannerIndex.php?id=$id>'.$row_ViewBanners['ID'].'</a>"; ?>
however i get the error
Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING' in e:\program files\apache group\apache\htdocs\ammobox\admin\bannerindex.php on line 69
Anyone know how i can do this href
Thanks
Chris