while
PHPでループを使用せずに、mysqlデータを配列に保存することは何とか可能ですか? ここには1列しかありません。
$members = $conn->prepare(Select id from members where state = 'CA');
$members->execute();
//Result ->1, 2, 3, 4, 5, 6, 7, 8, 9
//$myarray = array of the above results.
$myarray = array(1, 2, 3, 4, 5, 6, 7, 8, 9)//Has to be this kind of array.
これは別のコード内にあるため、ここで別の while ループを回避しようとしています。