Database encapsulation Hyper-detailed version

Source: Internet
Author: User

<?php

Class FengZhuang//Building a category
{
Public $host = "localhost"; Server address (public)
Public $uid = "root"; Database user name
Public $pwd = "root"; Database Password
Public $dbname = "Housedb"; Database name

Public function Query ($sql, $type =1)//provide method for common external calls (query lookup)
{
$db = new Mysqli ($this->host, $this->uid, $this->pwd, $this->dbname); Connection database is called with $this
$result = $db->query ($sql); Call the Query method to execute the SQL statement and return a content

if ($type = = "1")//determine type if Type equals a description is a query statement
{
return $result, Fetch_all (); Because it is a query statement, it returns all results found and exists in a two-dimensional array and returns using return
}
Else
{
return $result; If it is adding or deleting the statement directly return Ture or False
}
}
}

?>

Database encapsulation Hyper-detailed version

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.