Hi all !
Here is a small piece of code that I wrote to Select from a DB:-
$query = "SELECT Id, User, Pass, FROM $table WHERE User = ?";
$stmt = $con->prepare($query);
$stmt->bind_param('s',$user);
$stmt->execute();
$stmt->bind_result($db_id,$db_user,$db_pw);
$stmt->fetch...
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.