Created
May 25, 2012 08:56
-
-
Save kane-thornwyrd/2786793 to your computer and use it in GitHub Desktop.
random crap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$shop = array( | |
array( | |
'Title' => 'rose', | |
'Price' => 1.25 , | |
'Number' => 15 | |
), | |
array( | |
'Title' => 'daisy', | |
'Price' => 0.75 , | |
'Number' => 25, | |
), | |
array('Title' => 'orchid', | |
'Price' => 1.15 , | |
'Number' => 7 | |
) | |
); | |
echo $shop[0][2]['Price']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment