10-14-2005, 08:23 PM
|
#2 (permalink)
|
|
The Contributor
Join Date: Mar 2005
Posts: 81
Thanks: 0
|
Ok this is what I'm getting from your question. Let me know if I understood incorrectly.
You want an array with all the values to do something with later. You could create your array dynamically by using the mysql_fetch_array
Code:
$idArray = array();
while($row=mysql_fetch_row($result)){
$idArray[] = $row[0];
}
|
|
|
|