为什么fetch_array() 得不到数据?该如何解决
程序员文章站
2024-01-11 14:24:04
...
为什么fetch_array() 得不到数据?
function query($sql) {
$this->sql = $sql;
$result = mysql_query($sql,$this->conn) or die(mysql_error());
if (!$result) {
$this->show("错误SQL语句",$sql);
} else {
$this->result = $result;
}
}
function select($table, $columnName = "*", $condition = '') {
$condition = $condition ? ' WHERE ' . $condition : NULL;
$this->query("SELECT $columnName FROM $table $condition");
}
function fetch_array() {
if(!mysql_fetch_array($this->result)){
$this->show("错误执行");
}else{
return mysql_fetch_array($this->result);
}
}
------解决方案--------------------
function query($sql) {
$this->sql = $sql;
$result = mysql_query($sql,$this->conn) or die(mysql_error());
if (!$result) {
$this->show("错误SQL语句",$sql);
} else {
$this->result = $result;
}
}
function select($table, $columnName = "*", $condition = '') {
$condition = $condition ? ' WHERE ' . $condition : NULL;
$this->query("SELECT $columnName FROM $table $condition");
}
function fetch_array() {
if(!mysql_fetch_array($this->result)){
$this->show("错误执行");
}else{
return mysql_fetch_array($this->result);
}
}
------解决方案--------------------
- PHP code
function fetch_array() { if(! $this->result){ $this->show("错误执行"); }else{ return mysql_fetch_array($this->$result); }相关文章
相关视频
上一篇: 新建工程(寄存器)
下一篇: 国际期货软件开发 外盘期货搭建
推荐阅读
-
为什么fetch_array() 得不到数据?该如何解决
-
包涵浮动QQ客服文件后 为什么滚动垂直滚动条浮动QQ客服不随着滚动条移动?该如何解决
-
框架是什么,为什么要用框架. 框架解决了什么.该如何处理
-
这个动态获取服务器时间为什么和正常时间差8个小时,该如何解决
-
PHP+MYSQL插入数据 检查是否重复,该如何解决
-
想做一个美容院排班的系统,求好的数据库结构思路。该如何解决
-
[PHP]将JSON模型的数据,替换成JSON数据,该如何解决
-
为什么取不到SESSION变量的值?该如何解决
-
PHP能不能把js文件写入数据库,前台用js文件,直接读取数据库,该如何解决
-
为什么无法使用php中mysqli的准备语句进行数据库中数据的查询(绑定参数或者绑定结果),项目急用!该如何处理