how can i copy an array that’s come from mysql_fetch_array to an other one
for example:
mysql connection--------->
$array = array();
$row= mysql_fetch_array($query) or die(mysql_error());
I want to copy the array $row to the new one $array
i tried with $row = $array but it didn’t work when im dumping it the new array is empty.
Something like this?