Watajax - 快速的jQuery插件和PHP表格生成器


Apache
跨平台
PHP

软件简介

Watajax 是一个PHP和jQuery结合起来用来快速生成网页表格数据的解决方案。

示例代码:

PHP:
<?php
// Connect to the database first if you plan on using the Sql version of
Watajax.

require_once(“lib/Watajax.class.php”);
$Watajax = new WatajaxSql();
$Watajax->columns = array(
“id” => array(“name” => “#”, “sort_type” => “numeric”, “hide” => true),
“firstname” => array(“name” => “First name”, “transform” => ‘ !firstname’),
“lastname” => array(“name” => “Last name”),
“email” => array(“name” => “E-mail adress”, “transform” => ‘!email‘),
“tools” => array(“name” => “”, “virtual” => true, “transform” => ‘edit‘));
$Watajax->run();
?>

jQuery: