Lore Investigations follows the paranormal investigative team of Nathan and TJ. Their first case is The Creepy Barn, in which they go up against what is possibly a possessed teenaged girl. Of course, it's hard to tell a regular teenaged girl from one possessed by a ghost.
Lore Investigations is written by Amanda Jones and Scott Zirkel, with art by Matt Hebb. Jason Worthington is on inks and Juan Carlos Porras bringing up the colors.
if(!empty($_POST))
{
$continue = true;
function isValidEmail($email){
return eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email);
}
function send_email($from, $message)
{
mail('scott@scottzirkel.com','Eternain Mail!',$message,$from);
return true;
}
function prep_for_form($data)
{
return str_replace(array("'", '"', '<', '>'), array("'", """, '<', '>'), stripslashes($data));
}
//$data = prep_for_form($_POST);
while($continue)
{
$input = new CI_Input();
$data = $input->xss_clean($data);
echo "
"; print_r($data); echo ""; foreach($data as $key => $value) { $$key = trim($value); } if(empty($email) || empty($name) || empty($message)) { echo "
Please fill out all the fields!
";
break;
}
if(!isValidEmail($email))
{
echo "Please enter a valid email address.
";
break;
}
if(preg_match( "/[\r\n\t]/", $name) || preg_match( "/[\r\n\t]/", $email))
{
echo "Illegal characters found! No spamming!
";
break;
}
$from = "From: ".$name." <".$email.">";
if(send_email($from,$message))
{
unset($name);
unset($email);
unset($message);
echo "Thanks for contacting He-Guy. Prince Adam will deliver this message just after his nap.
";
}
$continue = false;
}
}
?>