Ok this may be obvious but I am making a friending system but I need to have multiple possible userids for the userid column in my table activity but when i use the code below:
$q = $pdo->prepare("SELECT * FROM friends WHERE userid=:uid");
$q->execute(array(
":uid"=>$user['id'],
));
if($q->rowCount()>0){
$remainder ="";
foreach($q as $p){
$remainder .= "OR `userid` =`".$p['friendid']."`";
}
}
$query = $pdo -> prepare("SELECT * FROM `activity` WHERE `userid`=:id .$remainder. ORDER BY id DESC LIMIT 50");
$query->execute(array(
":id"=>$user['id']
));
it in fact returns nothing when I var_dump the result. Whereas it should have the stream content of the user and all his/her friends.
What have I done wrong here? I cannot seem to find the problem?
Thanks