PHP Classes

File: sample.php

Recommend this page to a friend!
  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: 16 years ago
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');

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

?>