PHP Classes

File: example.php

Recommend this page to a friend!
  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: 15 years ago
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>";
?>