beboo002 Posted September 4, 2007 Share Posted September 4, 2007 hello all i am creating a dynamic site but i hav problem to fetch the value form database with link <? include_once("includes/db.php"); include_once("includes/functions.php"); $sql="select * from tbl_cat where sub_cat_id=0 order by rand() limit 2 "; $res=mysql_query($sql,$link);$query=mysql_fetch_row($res); while ($row=mysql_fetch_array($res)) { //echo "<td>$row[cat_name]</td>"; } ?> need here link like <a href="category.php?display_cat_id=<?=$row_cat['id'];?>"><?=$row_cat['cat_name'];?></a> but i cont able to do this although it was not giving any error also not showing any result and <?=$query["2"];?>is work properly with out link. Quote Link to comment https://forums.phpfreaks.com/topic/67862-solved-how-to-getting-link-from-database/ Share on other sites More sharing options...
vbnullchar Posted September 4, 2007 Share Posted September 4, 2007 try this; while($row=mysql_fetch_array($res)) { echo "<a href='category.php?display_cat_id=$row_cat[id]'>$row_cat[cat_name]</a>"; } Quote Link to comment https://forums.phpfreaks.com/topic/67862-solved-how-to-getting-link-from-database/#findComment-341125 Share on other sites More sharing options...
vijayfreaks Posted September 4, 2007 Share Posted September 4, 2007 Hi... For that are you sure that whatever you have written in key of $row_cat.. i.e. $row_cat['id'] in this --> 'id' so exactly same column(field) in db... so check for it otherwise it seems to be ok.. Regards, Vijay Quote Link to comment https://forums.phpfreaks.com/topic/67862-solved-how-to-getting-link-from-database/#findComment-341126 Share on other sites More sharing options...
Northern Flame Posted September 4, 2007 Share Posted September 4, 2007 while($row_cat = mysql_fetch_array($res)) { echo "<a href='category.php?display_cat_id=$row_cat[id]'>$row_cat[cat_name]</a>"; } Quote Link to comment https://forums.phpfreaks.com/topic/67862-solved-how-to-getting-link-from-database/#findComment-341133 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.