have an array that i want to push in itkey+value how do i dothat? thnaks i nadvance peleg
OK, say this is your array so far:
$array = array("index1" => "value1"); // Add new index and value like so: $array['index2'] = "value2"; print_r($array);
JSð
ð Be sure to mark this thread resolved... Have a nice day/night.