Login   Register  
PHP Classes
elePHPant
Icontem

File: try.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of naukri.com  >  crosstab  >  try.php  >  Download  
File: try.php
Role: ???
Content type: text/plain
Description: usage discription
Class: crosstab
Mysql data in cross-tabular format.
Author: By
Last change:
Date: 2002-05-03 15:24
Size: 335 bytes
 

Contents

Class file image Download
<?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();

?>