Jump to content

php referal help


ctcp

Recommended Posts

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?

 

 

Link to comment
https://forums.phpfreaks.com/topic/251252-php-referal-help/
Share on other sites

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'";

Link to comment
https://forums.phpfreaks.com/topic/251252-php-referal-help/#findComment-1288680
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.