欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php+mysql,面向对象,查询

程序员文章站 2022-06-15 11:04:15
...
php

class mysql{
public $host;
public $root;
public $password;
public $database;

    function __construct ($host,$root,$password){        $this->host     =$host;                                         $this->root     =$root;        $this->password =$password ;    }    function connect (){        @mysql_connect  ($this->host,$this->root,$this->password);        mysql_select_db ($this->database);        mysql_query     ("set names utf8");    }    function close(){        mysql_close();    }    function select(){        $result=mysql_query("select * from users");        print_r ($result);    }}    $link=new mysql("localhost","root","","stu_system");$link->connect();$link->select();$link->close();

?>
入手几天,用面向对象的,写到最后感觉我还是在面向过程写,怎么回事~~~
最后是网页不显示信息。
本人自学,能力有限~~求教呀~~

相关标签: php