stevenlmeyer Posted May 3, 2014 Share Posted May 3, 2014 Downloaded XAMPP and created MySQL database and table using phpMyAdmin. Inserted rows into table from input form in browser using mysqli. Confirmed data was inserted using browse function in phpMyAdmin. All good. Trouble comes when I try to retrieve data using mysqli and SELECT statement: Here is my code: ********************************************************************************* <?php $con = new MySQLi("localhost", "xxx", "xxx", "xxx"); if ($con === false) { die("ERROR no connexion " . mysqli_connect_error()); } else { echo "<p> Connect was a success </p>"; }; $sql = "SELECT lastName, firstName, email, gender from tab1"; echo "<p>" . $sql ."</p>"; $result = $con -> query($sql); $x = var_export($result, TRUE); echo "<br /><pre>" . $x . "</pre><br />"; echo "hi" . "<br />"; echo "<p>Try to see error" . $con -> error . "</p>"; $con -> close(); ?> ****************************************************************************************************** And here is what I see in the browser *********************************************************************************************************** Connect was a success [so it connected] SELECT lastName, firstName, email, gender from tab1 [the $sql statement] mysqli_result::__set_state(array('current_field' => NULL,'field_count' => NULL,'lengths' => NULL,'num_rows' => NULL,'type' => NULL,))hiTry to see error [No error apparently] ************************************************************************************************************ Nothing in result Works fine with INSERT Fails with SELECT All tips, suggestions welcome. Link to comment https://forums.phpfreaks.com/topic/288198-mysqli/ Share on other sites More sharing options...
stevenlmeyer Posted May 3, 2014 Author Share Posted May 3, 2014 OK I've solved the problem. My own stupidity. Link to comment https://forums.phpfreaks.com/topic/288198-mysqli/#findComment-1478006 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.