Here's my code:
$qer="insert into users (user,first,last,bio,email,pass,date,bd) values ('$name','$first','$last','$bio','$email','$pass','$date','$bd')";
$query=$con->query("select * from 'users'");
while($row=$query->fetch(PDO::FETCH_ASSOC)){
echo $row['user'];
}
And here's my error:
Fatal error: Call to a member function fetch() on a non-object in /opt/lampp/htdocs/it/newuser.php on line 97
Line 97 is the while statement, of course.
I'm not sure why it thinks it's not handling an object... or why I think it is. Help is appreciated. Thank you!
usersshould not be single quoted.select * from users. Single quotes identify string literals, not column names. – Michael Berkowski Jan 26 at 18:38insertstatement, you are getting none of the benefits PDO offers since you are placing variables directly into it. Please consider converting it to a prepared statement with placeholders. – Michael Berkowski Jan 26 at 18:39usersthe column name – Michael Berkowski Jan 26 at 19:16