Need help separating a row in a table into an array[solved]
Posted: Wed Apr 19, 2006 9:49 pm
Hi, i wanted to know how i can separate a row in a table to an array...
the row is for example: "me, you, they, us" and i want that after every "," a new array value will be made...
the row is for example: "me, you, they, us" and i want that after every "," a new array value will be made...
Code: Select all
$arr=array("one" => "me", "two" => "you", "three" => "they", "four" => us);