is there a way to call another php file which starts a unique html page??? Here is the script:[php]<?php
//session_start();
//error_reporting(E_ALL);
ini_set(‘display_errors’, ‘1’);
$homedir="/home/gimpware/public_html/test";
function getemail() {
?>
function isemailvalid($email,$homedir) {
chdir(“data”);
if(!(file_exists($email))) {
chdir($homedir);
return true;
break;
}
else {
chdir($homedir);
return false;
}
}
// main
echo ’
As they uniquely identify an user, email addresses will be used for logging into the website… Please, only 1 account per user, ok??? Abusers of this policy risk having both their accounts eliminated, forcing them to start all over, again, and we do not want that, do we??? Also, do not share your password with anyone, under any circumstances, because this account is solely yours, and is good for all my websites…
}
} else {
getemail();
}
} while (isemailvalid($_POST[‘emailaddress’],$homedir) == false);
?>[/php]
is there a way in any language???