nikhildigde Posted October 20, 2008 Share Posted October 20, 2008 hey iv written an applicn using MySQL in PHP......the connection is done properly but its not displaying all the tuples.......its jus printing the 1st one...... <?php mysql_connect('localhost','dname','pass'); mysql_select_db('test'); $query="select * from tbname"; mysql_query($query); $res=mysql_fetch_array($res); for($i=0;$i<count($res);$i++) { echo $res[$i]; } ?> please help!!! Link to comment https://forums.phpfreaks.com/topic/129264-solved-please-help/ Share on other sites More sharing options...
Maq Posted October 20, 2008 Share Posted October 20, 2008 Try this: mysql_connect('localhost','dname','pass'); mysql_select_db('test'); $query="SELECT * FROM tbname"; $result = mysql_query($query) or die(mysql_error()); while ($res=mysql_fetch_array($result)) { echo $res['name1']; echo $res['name2']; } ?> Link to comment https://forums.phpfreaks.com/topic/129264-solved-please-help/#findComment-670172 Share on other sites More sharing options...
rhodesa Posted October 20, 2008 Share Posted October 20, 2008 you need to loop over the rows too: <?php mysql_connect('localhost','dname','pass'); mysql_select_db('test'); $query="select * from tbname"; $res=mysql_query($query); while($row=mysql_fetch_array($res)){ for($i=0;$i<count($row);$i++) { echo $row[$i]; } } ?> Link to comment https://forums.phpfreaks.com/topic/129264-solved-please-help/#findComment-670174 Share on other sites More sharing options...
nikhildigde Posted October 21, 2008 Author Share Posted October 21, 2008 thanks dude i got it....... cheers!!! Link to comment https://forums.phpfreaks.com/topic/129264-solved-please-help/#findComment-670965 Share on other sites More sharing options...
Maq Posted October 21, 2008 Share Posted October 21, 2008 thanks dude i got it....... cheers!!! cool solved then? Link to comment https://forums.phpfreaks.com/topic/129264-solved-please-help/#findComment-671314 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.