/* register.php
1) If this is the first pass, loads form only ELSE
2) Loads and displays errors returned from resterprocess2.php */
/* Session start */
session_start();
$errors = $_SESSION["errors"]; //get the errors in session
$err=split(",",$errors); //split errors at comma
$email = $_SESSION['email'];
$usertype = $_SESSION['usertype'];
include_once "site.css";
?>
Jiwaan - Share Life without the nitty-gritty details
|
include_once "title.html"; ?>
|
|

|

foreach($err as $e) {echo "$e ";}//display errors ?>
|
|