Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Read csv file

Mon Oct 27, 2008 6:34 pm

Code:
<?php
   $file
= "./demoCSV.csv";
   
$fh = fopen($file, "rt");
   
$userdata = fread($fh, filesize($file));
   
fclose($fh);

   echo
$userdata;
?>




Post a reply
  Related Posts  to : Read csv file
 read from file in C++     -  
 File read by char     -  
 File write read     -  
 Read Binary File in C++     -  
 read file in matlab     -  
 Read and Write to file using ASP     -  
 javascript read file     -  
 Read and write CSV file     -  
 Read Arabic text from file     -  
 How to read and write to CSV file from python     -  

Topic Tags

PHP Files and I/O