Skip to content

Instantly share code, notes, and snippets.

@wheresalice
Created July 14, 2010 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wheresalice/476158 to your computer and use it in GitHub Desktop.
Save wheresalice/476158 to your computer and use it in GitHub Desktop.
<pre>
<?php
$foo = array();
$foo['country'] = "united Kindom";
$foo['street'] = "";
$foo['state'] = "ENG";
print_r( $foo);
$bar = array();
$bar['country'] = "Danmark";
$bar['street'] = "";
$bar['state'] = "DK";
print_r( $bar);
print $foo['country'];
print $bar['state'];
?>
</pre>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment