Skip to content

Instantly share code, notes, and snippets.

@csakis
csakis / ajax.php
Created September 16, 2013 18:17 — forked from optikalefx/ajax.php
<?php
require_once("grid.php");
$grid = new Grid("users", array(
"delete"=>true
));
?>
<table class="users" action="ajax.php">
<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>