Login   Register  
PHP Classes
elePHPant
Icontem

File: CreatorExample.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of sibiraj.p.r  >  Sortable Table  >  CreatorExample.php  >  Download  
File: CreatorExample.php
Role: Example script
Content type: text/plain
Description: Example
Class: Sortable Table
Display MySQL query results in a sortable table
Author: By
Last change:
Date: 2010-12-01 03:23
Size: 333 bytes
 

Contents

Class file image Download
<title>PHP CLASSES || CSS || JQUERY</title>


<?php

//Include the Files

require("Creator.class.inc");


//Data base Connectivity

mysql_connect("localhost","root","");
mysql_select_db("test");


//Example data
$query=mysql_query("select * from data");


//call the Creator
$fetch=new Creator($query);



?>