View Single Post
Old 10-14-2005, 08:23 PM   #2 (permalink)
AlEast
The Contributor
 
Join Date: Mar 2005
Posts: 81
Thanks: 0
AlEast is on a distinguished road
Default

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];
}
__________________
NEWEDGE Services, Inc. - Developers of ClientExec
AlEast is offline  
Reply With Quote