R
red scar
Guest
$myDB = new mysqli('localhost', 'root', 'password', 'user_data');
$statement_ = "SELECT * FROM user_data WHERE specific_user=".$UniqueUser;
$res = $myDB->query($statement);
// ... etc.. etc..
The first answer is absolutely correct. This answer will serve as your alternative guide and example.
* remember that $UniqueUser is a variable and contains value of the specific user..
$statement_ = "SELECT * FROM user_data WHERE specific_user=".$UniqueUser;
$res = $myDB->query($statement);
// ... etc.. etc..
The first answer is absolutely correct. This answer will serve as your alternative guide and example.
* remember that $UniqueUser is a variable and contains value of the specific user..