Skip to content

Instantly share code, notes, and snippets.

@kane-thornwyrd
Created May 25, 2012 08:56
Show Gist options
  • Save kane-thornwyrd/2786793 to your computer and use it in GitHub Desktop.
Save kane-thornwyrd/2786793 to your computer and use it in GitHub Desktop.
random crap
<?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