Login   Register  
PHP Classes
elePHPant
Icontem

File: sample.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Manimaran  >  CSV Creation  >  sample.php  >  Download  
File: sample.php
Role: Example script
Content type: text/plain
Description: Sample example file
Class: CSV Creation
Create CSV files from MySQL table data
Author: By
Last change:
Date: 2008-01-22 04:51
Size: 385 bytes
 

Contents

Class file image Download
<?
require_once('inc.csvcreation.php');

$csvcreate = new CSVCreation();
$csvcreate->path './temp/';
// This will create csv file for all table in database
$csvcreate->createCSVforall();

/* .......................................

//  This will create csv file for particular table
$csvcreate->createcsv('Tablename');

..........................................*/

?>