简体   繁体   中英

displaying results in a table using mysqli

so my friend just changed my php so I'm using mysqli and after slight modifications to my code I still receive: Fatal error: Call to undefined method mysqli::fetch_object() in C:\\wamp\\www\\web2\\database.php on line 44

   <?php
class Database 
{ 
 public $server = "localhost";
 public $database = "database"; 
 public $user = "root"; 
 public $password = ""; 
 public $row;
 public $result;
 public $sqlExtra = " ORDER BY firstname ASC";
 public $dbLocalHost;





 //call connection method upon constructing 
 public function __construct(){
  $this->createConnection(); 
 }

 //connection to the database
 public function createConnection() 
    { 
     $this->dbLocalhost = new mysqli($this->server, $this->user, $this->password, $this->database)
                or die("could not connect:");


      //mysql_select_db($this->database)
       //
       //  or die("Could not find the database: ".mysql_error());



 } 

 //execute query string 
 public function query($queryString) 
    {


        $result = $this->dbLocalhost->query($queryString);

        while($row = $this->dbLocalhost->fetch_object($result))
        {
            echo "<tr><td>".$row[0]."</td><td>".$row[1]."</td><td>".$row[2]."</td></tr>";
        }

    } 

    public function newRecord($fname, $lname)
    {
        $firstname = $fname;
        $lastname = $lname;

        $this->emptyCheck($firstname, $lastname);
        $this->insert($firstname, $lastname);
    }

    function insert($fname, $lname)
    {
        $insert = "INSERT INTO table (firstname, lastname)
            VALUES ('$fname','$lname')";
        mysql_query($insert)
        or die("could not insert:".mysql_error());
        header('Location: blah.php');

    }

    function emptyCheck($fname, $lname)
    {
        if ($fname == "" || $lname == "")
        {
            echo "Please fill in all the fields.";
        }
    }


} 

?>

and this page displays it:

  <?php

include('database.php');
$db = new Database();
$sql = "SELECT * 
    FROM tables"; 

if ($_GET['sort'] == 'id')
{
    $sql .= " ORDER BY id";
}
elseif ($_GET['sort'] == 'fn')
{
    $sql .= " ORDER BY firstname";
}
elseif ($_GET['sort'] == 'ln')
{
    $sql .= " ORDER BY lastname";
}






?>

<html>
<body>


    <table>
  <tr>
    <td>

      <table border="1" align="center">
      <tr>
        <th><a href="blah.php?sort=id">ID</a></th>
        <th><a href="blah.php?sort=fn">First Name</a></th>
        <th><a href="blah.php?sort=ln">Last Name</a></th>
        <th>Edit</th>
        <th>Delete</th>
      </tr>
<?php
$db->query($sql);
?>
      </table>
</table>
    <a Href="new.php">Add new Record</a>

</body>
</html>

Sorry if this is really obvious, I'm terrible at webdev and new to mysqli. Thanks.

You should use fetch_object on the result of the query and not on your database connection:

$result = $this->dbLocalhost->query($queryString);

while($row = $result->fetch_object())    // here

This line while($row = $this->dbLocalhost->fetch_object($result)) needs to be

 $result = $this->dbLocalhost->query($queryString);
 while($row = $result->fetch_object())

Also, the insert function uses mysql, instead of mysqli .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM