Skip to content

Instantly share code, notes, and snippets.

@venkatd
Created June 24, 2012 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save venkatd/2985113 to your computer and use it in GitHub Desktop.
Save venkatd/2985113 to your computer and use it in GitHub Desktop.
$data = array(
'name' => 'Dan B.',
'age' => 24,
'picture' => image('dan.png'),
'networks' => 'NYU',
'hometown' => 'Fresh Meadows, NY',
'current_city' => 'New York',
'college' => 'Cornell',
'interested_in' => 'women',
'relationship_status' => 'in a relationship',
'work' => 'homeless',
'mutual_friends' => array(
array(
'name' => 'Etay L.',
'thumb' => 'etay.jpg',
),
array(
'name' => 'Venkat D.',
'thumb' => 'venkat.jpg',
),
array(
'name' => 'Jackie P.',
'thumb' => 'jackie.jpg',
),
array(
'name' => 'Hannah S.',
'thumb' => 'hannah.jpg',
),
array(
'name' => 'Rachel A.',
'thumb' => 'rachel.png',
),
),
'music' => array(
array(
'name' => 'brittany spears',
'thumb' => image('spears.jpg'),
),
array(
'name' => 'u2',
'thumb' => image('u2.jpg'),
),
array(
'name' => 'oasis',
'thumb' => image('oasis.jpg'),
),
array(
'name' => 'red hot chilli peppers',
'thumb' => image('rhcp.jpg'),
),
array(
'name' => 'coldplay',
'thumb' => image('coldplay.jpg'),
),
),
'interests' => array(
array(
'name' => 'skiing',
'thumb' => image('skiing.jpg'),
),
array(
'name' => 'basketball',
'thumb' => image('basketball.jpg'),
),
array(
'name' => 'dogs',
'thumb' => image('dogs.jpg'),
),
array(
'name' => 'traveling',
'thumb' => image('traveling.jpg'),
),
array(
'name' => 'technology',
'thumb' => image('technology.jpg'),
)
),
'recent_places' => array(
array(
'name' => 'joshua tree',
'thumb' => image('joshua_tree.jpg'),
),
array(
'name' => 'mercury bar',
'thumb' => image('mercury_bar.jpg'),
),
array(
'name' => '49grove',
'thumb' => image('49grove.jpg'),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment