プロジェクト構造:
操作効果
conn.php
コードをコピー コードは次のとおりです:
class ConnectionMySQL{
//Host
private $host="localhost"
//データベース ユーザー名
private $ name="root";
//データベースのパスワード
private $pass="";
//データベースの名前
private $table="phptest"; ;
//コンストラクター __construct(){
$this->ut=$ut;
$this->connect();
//データベースリンク
function connect(){
$link= mysql_connect ($this->host,$this->name,$this->pass) または die ($this->error());
mysql_select_db($this->table,$link) または die ("そのようなデータベースはありません:".$this->table);
mysql_query("SET NAMES '$this->ut'")
}
function query($sql, $type = '') {
if(!($query = mysql_query($sql))) $this->show('Say:', $sql);
return $query;
}
function show($message = '', $sql = '') {
if(!$sql) echo $message;
else echo $message.'
'.$sql;
functionaffected_rows() {
return mysql_affected_rows(); ($query, $row) {
return mysql_result($query, $row);
}
function num_rows($query) {
return @mysql_num_rows($query)
}
function num_fields($query); mysql_num_fields($query);
}
function free_result($query) {
return mysql_free_result($query);
function insert_id() {
return mysql_insert_id()
}
function fetch_row($query) {
戻るmysql_fetch_row($query);
}
function version() {
return mysql_get_server_info();
}
function close() {
return mysql_close()}
//$table テーブルに値を挿入します
function fn_insert ($table,$name,$value){
$this->query("insert into $table ($name) value ($value)");
}
// $id に基づいてテーブル $table を削除しますvalue
function fn_delete($table,$id,$value){
$this->query("delete from $table where $id=$value");
echo "id is "。 " レコードは正常に削除されました!"
}
}
$db = new ConnectionMySQL()
$db->fn_insert('test','id,name,sex',"'','hongtenzone', ' M'");
$db->fn_delete('test', 'id', 1);
?>
http://www.bkjia.com/PHPjc/325333.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/325333.html
技術記事
プロジェクトの構造: conn.php のコピー コードは次のとおりです: ?php class ConnectionMySQL{ //データベース ユーザー名 private $name="root";