Skip to content

Instantly share code, notes, and snippets.

@AngeloR
Created April 19, 2011 20:48
Show Gist options
  • Save AngeloR/929614 to your computer and use it in GitHub Desktop.
Save AngeloR/929614 to your computer and use it in GitHub Desktop.
Sample datasource for OPCDataGrid implementation
<?php
$data = array(
array(
'user_id' => 1,
'username' => 'skywalkl',
'email' => 'luke.skywalker@rebelalliance.ht'
),
array(
'user_id' => 2,
'username' => 'solohan',
'email' => 'han.solo@huttempire.ta.to'
),
array(
'user_id' => 3,
'username' => 'organale',
'email' => 'leia.organa@rebelalliance.ht'
),
array(
'user_id' => 4,
'username' => 'skywalka',
'email' => 'v4der@empire.gl'
),
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment