strujillo Posted August 20, 2008 Share Posted August 20, 2008 So my code is only printing out one row. Not all the rows that apply. Do you see anything wrong. I cant figure out. Is there a certain code to use??? This is the code that prints the results. It only prints the first restult it finds in mysql <?php include("dbconnect.php"); $username=$_SESSION["myusername"]; $sql ="SELECT * FROM `abhs`.`messages` WHERE `to`='$username' LIMIT 0 , 30"; $result=mysql_query($sql); $rows=mysql_fetch_array($result); ?> <table width="500" border="1" cellpadding="5"> <tr> <td bgcolor="#00FFFF">To: </td> <td bgcolor="#CCFFFF"><?php echo $rows['to']; ?></td> </tr> <tr> <td bgcolor="#00FF00">From: </td> <td bgcolor="#99CCFF"><?php echo $rows['from']; ?></td> </tr> <tr> <td bgcolor="#00FFFF">Subject: </td> <td bgcolor="#CCFFFF"><?php echo $rows['subject'];?></td> </tr> <tr> <td bgcolor="#00FF00">Message: </td> <td bgcolor="#99CCFF"><?php echo $rows['message'];?></td> </tr> </table> Link to comment https://forums.phpfreaks.com/topic/120476-mysql-selecting-only-one-rowi-need-it-to-select-every-row-that-applys-help/ Share on other sites More sharing options...
cooldude832 Posted August 20, 2008 Share Posted August 20, 2008 of course it will you said $row = mysql_fetch_assoc($result) that means it will get the Next row in the resource. You need to use a structure like while($row = mysql_fetch_assoc($result)){ output } Link to comment https://forums.phpfreaks.com/topic/120476-mysql-selecting-only-one-rowi-need-it-to-select-every-row-that-applys-help/#findComment-620828 Share on other sites More sharing options...
strujillo Posted August 20, 2008 Author Share Posted August 20, 2008 OOOOHHHHH....lol thanks im so dumb haha Link to comment https://forums.phpfreaks.com/topic/120476-mysql-selecting-only-one-rowi-need-it-to-select-every-row-that-applys-help/#findComment-620830 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.