Hello all,
I have a mysql select query and got it in an array
$query = "select persid from reactie";
$result = mysql_query($qu ery);
$query_data = mysql_fetch_arr ay($result);// Haal de gegevens uit de
tabel
NOW I WANT TO ECHO I"T:
echo "$query_dat a[8]";
But only the query_date[0] is valid. What am i doing wrong? there are many
more values in the table. I want to make an array with all the values from
the field "persid" in the database.
Irlan
I have a mysql select query and got it in an array
$query = "select persid from reactie";
$result = mysql_query($qu ery);
$query_data = mysql_fetch_arr ay($result);// Haal de gegevens uit de
tabel
NOW I WANT TO ECHO I"T:
echo "$query_dat a[8]";
But only the query_date[0] is valid. What am i doing wrong? there are many
more values in the table. I want to make an array with all the values from
the field "persid" in the database.
Irlan
Comment