Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Raj Kumar Trivedi  >  CSV to Array  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example.php
Class: CSV to Array
Retrieve data from CSV file into an array
Author: By
Last change:
Date: 2009-11-09 01:59
Size: 154 bytes
 

Contents

Class file image Download
<?php 
    
include_once('csv.inc.php');
    
$csv = new csv_uploder('user.csv'2000 ',');
    echo 
"<pre>";
        
print_r($csv->getCsv());
    echo 
"</pre>";
?>