ctcp Posted November 16, 2011 Share Posted November 16, 2011 mysql database table referals ID | user | referal 1 | ctcp | alex | 2 | ctcp | alex2| table liked ID | user_id | 1 | 1 2 | 2 Im working my referal script and i whant give points to referal account if $ref = mysql_query("SELECT * FROM referals WHERE user = '$data->login'"); account exist in referals and if account id exist in liked how can i do this? Quote Link to comment https://forums.phpfreaks.com/topic/251252-php-referal-help/ Share on other sites More sharing options...
RussellReal Posted November 16, 2011 Share Posted November 16, 2011 I don't quite understand what you want.. if you mean you want to count the number of rows in table_B which match an ID from table_A, here is how you will do it: $user_id = 1; $qry = "SELECT count(id) FROM referals A JOIN liked B ON (A.id = B.user_id) WHERE A.id = '$user_id'"; Quote Link to comment https://forums.phpfreaks.com/topic/251252-php-referal-help/#findComment-1288680 Share on other sites More sharing options...
ctcp Posted November 16, 2011 Author Share Posted November 16, 2011 thank you for your replay i don't whant to count but comparison Quote Link to comment https://forums.phpfreaks.com/topic/251252-php-referal-help/#findComment-1288686 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.