这样写为什么获取不到数据?
程序员文章站
2024-02-03 23:31:52
...
mysql_fetch_array不就是获取一行数据吗 为什么获取不到 还提示这个内容
( ! ) Warning: mysql_fetch_array() expects parameter 1 to be resource, object given in D:\wamp\www\chaxun.php on line 5
$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");
$stmt=$pdo->prepare("select * from test");
$stmt->execute();
$myrow = mysql_fetch_array($stmt);
print_r($myrow);
?>
谢谢
( ! ) Warning: mysql_fetch_array() expects parameter 1 to be resource, object given in D:\wamp\www\chaxun.php on line 5
$pdo=new PDO("mysql:host=localhost;dbname=t1","root","");
$stmt=$pdo->prepare("select * from test");
$stmt->execute();
$myrow = mysql_fetch_array($stmt);
print_r($myrow);
?>
回复讨论(解决方案)
$myrow = mysql_fetch_array($stmt);
应为
$myrow = $stmt->fetch();
xi
$myrow = mysql_fetch_array($stmt);
应为
$myrow = $stmt->fetch();
谢谢
推荐阅读
-
这样写为什么获取不到数据?
-
京东和淘宝的api名称为什么这样写? jingdong.seller.promotion.activitymode.add
-
这样写为什么不能更新内容
-
这么的嵌套查询,为什么查不到数据
-
为什么突然取不到数据库(mysql)里的数据?解决思路
-
mysql数据库表示时间的字段为什么可以用int类型啊这样与datetime相比有什么好处?该怎么处理
-
为什么使用file_get_contents获取不到百度竞价内容
-
ThinkPHP写数组插入与获取最新插入数据ID实例,thinkphp实例
-
我已经把session数据存入数据库了,我想手动解码获取所有session_id数据,怎么写呢?
-
为什么用div加入小小的表单后,居中的页面整体会左移一点点,php搜索数据库返回数据后,也会这样_html/css_WEB-ITnose