PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
session_start();
header("Cache-control: private");
$Title = $_SESSION['Title'];
$FirstName = $_SESSION['FirstName'];
$LastName = $_SESSION['LastName'];
$Email = $_SESSION['Email'];
echo 'Please make sure you have entered all of the below fields. /n';
if (empty($Title)) {
echo 'Title /n';
}
if (empty($FirstName)) {
echo 'First Name /n';
}
if (empty($LastName)) {
echo 'Last Name /n';
}
if (empty($Email)) {
echo 'Email /n';
}
?>