此查询始终产生三行。
$Z = $myquery->execute($v);
$row = mysql_fetch_array($Z);
我不想做一个while循环..我怎么能作为变量访问。
例如
$row1 = the 1st column of row1
$row2 = the 1st column of row1
$row3 = the 1st column of row1
我认为这样的事情会奏效吗?
$row1 = $row[0][0];
谢谢。