Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

low cost magazines
wwwstores
golfing products

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


check a file exists

check a file exists

<?php
$filename = 'test.csv';

if (file_exists($filename))
{
print "The file $filename exists";
}
else
{
print "The file $filename does not exist";
}
?>