Heim >Backend-Entwicklung >PHP-Tutorial >php数据库返回值有关问题

php数据库返回值有关问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 11:44:49924Durchsuche

php数据库返回值问题
本人刚开始学习PHP

<html><br />	<body><br />	<?php<br />		$con = mysql_connect("127.0.0.1","root","root");<br />		if(!con){<br />			die('Could not connect:'.mysql_error());<br />		}else{<br />			mysql_select_db("test",$con);<br />			$result = mysql_query("select * from user");<br />			echo "<table border='1'>";<br />				while($row = mysql_fetch_array($result)){<br />					echo "<tr>";<br />						echo "<td>" . count($row) . "</td>";<br />						echo "<td>" . $row[0] . "</td>";<br />						echo "<td>" . $row[1] . "</td>";<br />						echo "<td>" . $row[2] . "</td>";<br />					echo "</tr>";<br />				}<br />			echo "</table>";<br />			mysql_close($con);<br />		}<br />	?><br />	</body><br /></html>

我的数据库中就只有id,username,pwd3个字段为什么
echo "

" . count($row) . "";统计的count($row)的长度为6啊
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn