没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
<?php
//$sql="select * from `table` where 1";
//$sql="insert into `table` set `name`='asdfasdf',`passwd`='11111'";
//$sql="insert into `table` (`name`,`passwd`) values ('asdfasd','11111')";
//$sql="update `table` set `name`='112321',`passwd`='22222' where `id`='1'";
//$sql="delete from `table` where 1 and `id='1'`"
class mysql{
var $host="localhost";
var $port="3306";
var $user="root";
var $passwd="root";
var $db="";
var $charset="utf8";
var $conn;
function __construct($host,$port,$user,$passwd,$db,$charset="utf8"){
$this->host=$host;
$this->port=$port;
$this->user=$user;
$this->passwd=$passwd;
$this->db=$db;
$this->charset=$charset;
$this->connect();
}
function connect(){
$this->conn=@mysql_connect($this->host.":".$this->port,$this->user,$this->passwd) or die(mysql_error());
$this->select_db();
$this->charset();
}
//$sql="select * from `table` where 1";
//$sql="insert into `table` set `name`='asdfasdf',`passwd`='11111'";
//$sql="insert into `table` (`name`,`passwd`) values ('asdfasd','11111')";
//$sql="update `table` set `name`='112321',`passwd`='22222' where `id`='1'";
//$sql="delete from `table` where 1 and `id='1'`"
class mysql{
var $host="localhost";
var $port="3306";
var $user="root";
var $passwd="root";
var $db="";
var $charset="utf8";
var $conn;
function __construct($host,$port,$user,$passwd,$db,$charset="utf8"){
$this->host=$host;
$this->port=$port;
$this->user=$user;
$this->passwd=$passwd;
$this->db=$db;
$this->charset=$charset;
$this->connect();
}
function connect(){
$this->conn=@mysql_connect($this->host.":".$this->port,$this->user,$this->passwd) or die(mysql_error());
$this->select_db();
$this->charset();
}
function select_db(){
@mysql_select_db($this->db) or die(mysql_error());
}
function charset(){
@mysql_query("set names ".$this->charset) or die(mysql_error());
}
function query($sql){
$query=@mysql_query($sql);
return $query;
}
//以上数据库表链接成功;
function select($table,$where){
if(!empty($table)){
$sql="select * `".$table."` where 1 ";
if(!empty($where)){
$sql=$sql." and ".$where;
}
$this->query($sql);
}else{
die("error");
}
@mysql_select_db($this->db) or die(mysql_error());
}
function charset(){
@mysql_query("set names ".$this->charset) or die(mysql_error());
}
function query($sql){
$query=@mysql_query($sql);
return $query;
}
//以上数据库表链接成功;
function select($table,$where){
if(!empty($table)){
$sql="select * `".$table."` where 1 ";
if(!empty($where)){
$sql=$sql." and ".$where;
}
$this->query($sql);
}else{
die("error");
}
剩余5页未读,继续阅读
资源评论
- zhang_xdong2012-09-18没有汉字提示,只是不知道从那里拷了一段代码放上去的。。。一点作用没有。
jom258
- 粉丝: 0
- 资源: 12
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功