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