Skip to content

Instantly share code, notes, and snippets.

@optikalefx
Created September 21, 2012 21:28
Show Gist options
  • Save optikalefx/3764021 to your computer and use it in GitHub Desktop.
Save optikalefx/3764021 to your computer and use it in GitHub Desktop.
html
<table>
<tr>
<th col="Username">Username</th>
<th col="FirstName">First Name</th>
<th col="Lastname">Last Name</th>
<th col="Email">Email</th>
</tr>
</table>
<table>
<tr>
<th col="Username">Username</th>
<th col="FirstName">First Name</th>
<th col="Lastname">Last Name</th>
<th col="Email">Email</th>
</tr>
</table>
<script>
$(function() {
$(".users").grid();
});
</script>
<script>
$(function() {
$(".users").grid();
});
</script>
<?php
require_once("grid.php");
$grid = new Grid("users", array(
"save"=>true,
"delete"=>true
));
?>
<?php
require_once("grid.php");
$grid = new Grid("users", array(
"save"=>true,
"delete"=>true
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment