<?php
// Include the class file
include "class.crosstab.inc"
// Create an instance for crosstab
// Replace the following arguments with your own ones...
$cross = new crosstab ("<Row field>","<Column field>","<Reference field>","<Cross table name>");
// Display the data in cross-table(matrix) format.
$cross->show();
?>
|