このクエリの結果は常に 3 行になります。
$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];
ありがとう。