thanks for your replies.
im not certain im doing the right thing here, throwing the values into a database. i am currently trying another option, writing the values to a text file.
which method do you suppose is the best for writing and reading a chunk of data? id like the arrays to be a hundred or so long...often i can't send it from the flash page (im using POST) and it's as little as 20(x4) objects. im doing this locally, windows, apache...
heres my appalling code!
option a
//using only one array to test...
$i=0;
while ($i < count($object_array))
{
$query = "insert into object
(object_name) values
('$object_array[$i]')"
;
$i++;
}
option b
//write to file
$filename = "data/test.txt";
$forflash = "object=".$object_name."&\nx=".$object_x."&\ny=".$object_y."&\nrgb=".$object_rgb;
$fp = fopen ($filename, "a+") or
die("couldnt open file");
fwrite($fp, $forflash);
fclose($fp);
once again thanks for your ideas.
termy