Jump to content

MYSQL selecting only ONE row...i need it to select every row that applys... help


strujillo

Recommended Posts

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>

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.