$dnum = date(Ymd)*4;
$from = $_GET['fr'];
if($from == ""){
$from = $_POST['fr'];
}
if($from != $dnum){
echo("<<<<Restricted Area>>>>" .
"
Sorry, you must Log In to view this Page
");
exit();
}
$usrn = $_GET['usrn'];
if($usrn == ""){
$usrn = $_POST['usrn'];
}
if($usrn == ""){
echo("<<<<Restricted Area>>>>" .
"
Problem with your username. Please Log In again.
");
exit();
}
$Category = $_POST['Category'];
$Title = $_POST['Title'];
$Titlestrip = stripslashes($Title);
$Title1 = str_replace ( '\'', '’', $Titlestrip);
$Title2 = str_replace ( '"', '"', $Title1);
$Link = $_POST['Link'];
$Description = $_POST['Description'];
$Type = $_POST['Type'];
?>