Jump to content

[SOLVED] please help!!!!!


nikhildigde

Recommended Posts

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

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

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

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.