[ create a new paste ] login | about

Link: http://codepad.org/bAfbg1Fh    [ raw code | output | fork ]

PHP, pasted on Mar 7:
1
2
3
4
5
6
7
8
<?php
$parent = array(
    array('dog', 'cat', 'bird'),
    array('banana', 'apple', 'carrot'),
    array('yellow', 'blue', 'red')
);

echo "{$parent[0][1]}";


Output:
1
cat


Create a new paste based on this one


Comments: