PHP Simple parsing mysqli Query results (2 methods) _php Tips

Source: Internet
Author: User

This article illustrates a simple way to parse mysqli query results in PHP. Share to everyone for your reference, specific as follows:

You can put the results of a query into an object or array:

1. Put the results of the query into the object:

$sql = "Select Name,brief from Cars";
$result =mysqli->query ($sql);
while ($row = $result->fetch_object ())
{
echo $row->name;
echo $row->brief;
}

2. Put the array:

$sql = "Select Name,brief from Cars";
$result =mysqli->query ($sql);
while ($row = $result->fetch_array ())
{
echo $row [0];//$row [' name '];
echo $row [1];
}

More about PHP Interested readers can view the site topics: "PHP+MYSQLI Database Programming Skills Summary", "PHP based on PDO Operation Database Skills summary", "PHP operation and operator Usage Summary", "PHP Network Programming Skills Summary", " Introduction to PHP object-oriented programming, "PHP string (String) Usage Summary", "Php+mysql Database Operations Introduction Tutorial" and "PHP Common database Operation tips Summary"

I hope this article will help you with the PHP program design.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.