?? mysql.php
字號:
<?php
/*
[Hejone] mysql.php
Program Author: hejone(hejone@sina.com)
Program Version:1.0_n
Copyright:hejone http://www.ha365.com
Last Modified:09/16/2004
*/
class mysql{
var $dbhost = "localhost";
var $dbname = "poll";//數(shù)據(jù)庫名
var $dbuser = "root";//數(shù)據(jù)庫用戶名
var $dbpass = "hejone";//數(shù)據(jù)庫密碼
function connect_sql(){
mysql_pconnect($this->dbhost, $this->dbuser, $this->dbpass);
mysql_select_db ($this->dbname);
}
function insert_id(){
return mysql_insert_id();
}
}
?>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -