Advertisement
zachdyer

Saving to an array

Sep 2nd, 2015
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.12 KB | None | 0 0
  1. $markers = array();
  2.  
  3. foreach ($xml->result->Accounts->row as $row)
  4.     {
  5.         array_push($markers, $row);
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement