Jump to content

how do i check 2 fields


richarro1234

Recommended Posts

hey there,

 

im trying to cut down on the size of my database by checking for a users id in 2 collums of a database.

 

here is the code i have but for some reason it doesnt work?

 

<?php
$query12=" SELECT * FROM friends WHERE myid='$urid' and friendsid='$urid' LIMIT 5"; 
$result=mysql_query($query12) or die ('Error: '.mysql_error ());
$num=mysql_numrows($result) or die ('Error: '.mysql_error ());

$i=0;
while ($i < $num) {

$myid=mysql_result($result,$i,"myid");
$friendsid=mysql_result($result,$i,"friendsid");

$query10 = mysql_query("SELECT * from users WHERE id = $friendsid " );
while ($fr = mysql_fetch_array($query10)) {

$friendspic = $fr['picture'];
$friendsname = $fr['username'];
}
?>

 

that just comes back as "Error:" and doesnt show a message or anything.

 

Can someone please tell me how i can get this to work.

 

Thanks

Rich

Link to comment
https://forums.phpfreaks.com/topic/145197-how-do-i-check-2-fields/
Share on other sites

it just shows up as "SELECT * FROM friends WHERE myid='1' AND friendsid='1' LIMIT 5 "

 

print_r($query12=" SELECT * FROM friends WHERE myid='$urid' AND friendsid='$urid' LIMIT 5"); 
$result=mysql_query($query12) or die ('Error: '.mysql_error ());
$num=mysql_numrows($result);

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.