Okay, so far I can select two tables using mysql but I cant select three or more tables using mysql how can I select more then three tables using mysql.
Here is the code below.
SELECT users.*, oldusers.* FROM users, oldusers WHERE users.user_id='$user_id' = oldusers.user_id
I'm trying to add all the tables contents into something like this.
while($row = mysqli_fetch_array($dbc)){
$first_name = $row["first_name"];
$last_name = $row["last_name"];
}