关于mysql_fetch_array和mysql_fetch_row的用法
<?phpmysql_connect("localhost","root","XXX");"createtableS(panchar(10),yuanchar(10),y...
<?php
mysql_connect("localhost","root","XXX");
"create table S (pan char(10),yuan char(10),yu char(40))";
$sql="insert into s values('111','222','333')";
$a=mysql_query($sql);
if($b=mysql_fetch_array($a))
{
echo "$b[0]";
echo "<br>";
echo "$b[yuan]";
echo "<br>";
echo "$b[yu]";
echo "<br>";
echo "$b";
}
$c=mysql_fetch_row($a);
echo "$c";
echo "<br>";
echo "$a";
?>
错误信息:
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\wamp\www\test.php on line 2
Warning: mysql_connect(): in C:\wamp\www\test.php on line 2
Deprecated: mysql_query(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\wamp\www\test.php on line 5
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\test.php on line 6
Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in C:\wamp\www\test.php on line 16 展开
mysql_connect("localhost","root","XXX");
"create table S (pan char(10),yuan char(10),yu char(40))";
$sql="insert into s values('111','222','333')";
$a=mysql_query($sql);
if($b=mysql_fetch_array($a))
{
echo "$b[0]";
echo "<br>";
echo "$b[yuan]";
echo "<br>";
echo "$b[yu]";
echo "<br>";
echo "$b";
}
$c=mysql_fetch_row($a);
echo "$c";
echo "<br>";
echo "$a";
?>
错误信息:
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\wamp\www\test.php on line 2
Warning: mysql_connect(): in C:\wamp\www\test.php on line 2
Deprecated: mysql_query(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\wamp\www\test.php on line 5
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\test.php on line 6
Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in C:\wamp\www\test.php on line 16 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询