テーブルから必要なすべてのデータを取得する必要があります。このようなものが機能します:
$SQLCommand = "SELECT someFieldName FROM yourTableName";
この行はテーブルに入り、テーブルから「someFieldName」のデータを取得します。複数の列を取得する場合は、「someFieldName」にフィールド名を追加できます。
$result = mysql_query($SQLCommand); // This line executes the MySQL query that you typed above
$yourArray = array(); // make a new array to hold all your data
$index = 0;
while($row = mysql_fetch_assoc($result)){ // loop to store the data in an associative array.
$yourArray[$index] = $row;
$index++;
}
上記のループは各行を通過し、作成した新しい配列の要素としてそれを格納します。次に、画面に印刷するなど、その情報を使って好きなことを行うことができます。
echo $row[theRowYouWant][someFieldName];
したがって、$ theRowYouWantが4に等しい場合、5番目の行からのデータ(この場合は'someFieldName')になります(行は0から始まることに注意してください)。