Published in: PHP
Simple way to check see if a file exists and is readable before you include it. Stops nasty error messages onscreen.
<?php $file = 'includes/filename.inc.php'; include($file); } ?>
You need to login to post a comment.
Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.
1man on 04/25/07
php include check error message
3 people have marked this snippet as a favorite
Published in: PHP
Simple way to check see if a file exists and is readable before you include it. Stops nasty error messages onscreen.
<?php $file = 'includes/filename.inc.php'; include($file); } ?>
You need to login to post a comment.