davidpolitis
Full Member
Posts: 371 Reputation: 16
Joined: Aug 2006
|
RE: RE: PHP Question
quote: Originally posted by segosa
php code: if(file_exists($llama) == TRUE){
include ($llama);
}
else {
include("error.php")
}
quote: The == TRUE part also may as well as be removed as file_exists returns a boolean value...
php code: if(file_exists($llama)){
include ($llama);
}
else {
include("error.php")
}
This post was edited on 04-03-2009 at 06:53 AM by davidpolitis.
|
|