|
Posted by bob.herbst on 10/23/13 11:40
Now I am getting this following error:
Fatal error: Call to a member function query() on a non-object in
/opt/lampp/htdocs/phptrials/html_table_output.php on line 37
My line 37 is $result = $mysqli->query($query); which is part of this
next statement.
$query = "SELECT lastname as `Last Name`, firstname as `First Name`,
email as `E-Mail Address`,
advisor as `Advisor`, year as `Graduation Year`, degree as `Highest
Degree`, attend as `Attending` FROM rsvp
ORDER BY lastname";
$result = $mysqli->query($query);
I am sorry for all this I am new to PHP and I am just having syntax
problems.
Thanks again
[Back to original message]
|