Hi,
if I use this script...
if (file_exists("annotate.php.$id")){
include("annotate.php.$id");
}else{
echo("ID $id is incorrect.");
}
to determine whether the file to be included exists or not, is it possible to redirect to a page saying 'the file you requested wasn't found' or something? So, where it says 'echo("ID' etc, instead of an echo, how would I tell it to redirect to a different 'error' page?
Cheers, Andy :o)