Jump to content

Checking mysql_num_rows result with if statement


DarkPrince2005

Recommended Posts

Can anyone tell me what \i'm doing wrong?

 

$responded = mysql_query("select * from case_response where case_id = '".$case['Case ID']."'");
				  $responded_result = mysql_fetch_array($responded,MYSQL_ASSOC);
				  
				  $pictures = mysql_query("select * from case_pictures where case_id = '".$case['Case ID']."'");
				  
				  
				  $pdf = mysql_query("select * from case_pdf where case_id = '".$case['Case ID']."'");
				  $pdf_result = mysql_fetch_array($pdf,MYSQL_ASSOC);
				  If(mysql_num_rows($pictures) = 0){
				  echo"
				  <tr>
					<td colspan='2'>".htmlentities($responded_result['case_response_comment'])."</td>
				  </tr>
				  <tr>
					<td><table cellpadding='0' cellspacing='0' border='0'><tr>";
					while($pictures_result = mysql_fetch_array($pictures,MYSQL_ASSOC)){
					echo "<td><img src='".htmlentities($pictures_result['path'])."' width='150' /></td>";

					}
					echo "</tr></table></td>
				  </tr>";
			      }

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.