Jump to content

A loop issue


Shadowing

Recommended Posts

Im trying to search through the read column and see if any of the rows are read

I echo $mail and it shows all the rows for the user. So im grabing the ones I want but now i dont know how to search through what I selected. Or is there a simplier way of having SQL do what im trying to do?

 

 <?php   	
   			$query = "SELECT `read` FROM pm WHERE id='".mysql_real_escape_string($_SESSION['user_id'])."'"; 
		$results = mysql_query($query) or die(mysql_error());								
	while($row = mysql_fetch_assoc($results)) { 	 
	    
		$mail = $row['read'];
}
	// checks if user has unread mail or not
if ($mail == "unread") {    
    
    
    echo '<td><b><a href="inbox.php?inbox=1">Messages</a></b></td><td id="diamond">♦</td>';
    
} else {     
    
    echo '<td><a href="inbox.php?inbox=1">Messages</a></td>';
    
}    

?> 

Link to comment
https://forums.phpfreaks.com/topic/254200-a-loop-issue/
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.