#==============================================================================#
+----------------------------------+
| phpCSV Installation Instructions |
+----------------------------------+
1)	Upload all of the files extracted from the distribution file onto your 
	web server.
	
2)	Include the csv.class.php file wherever you need to use phpCSV.
	include('path/to/csv.class.php');
3)	csv.class.php also requires the file.class.php script which is 
	available from http://mikeleigh.com/download.php?download=3
	The required class should be installed in the same location as the 
	csv.class.php script on Windows.  Alternatively on Linux a symbolic 
	link can be created so you can have the following example structure.
	Windows based installation: (or Linux)
	--------------------------------------
	\csv.class.php
	\file.class.php
	Linux based installation:
	-------------------------
	\phpcsv\csv.class.php
	\phpcsv\file.class.php -> /phpfile/file.class.php
	\phpfile\file.class.php
#==============================================================================#
 
  |