Ahh I see... Maybe I should try it your way! This is the code I ended up doing (before I read the post).
Page.php
<?php
//This program was created by Mathew Santiago and his friend google.
//This is to verify whether you've entered text or not
$email = "";
if (isset($_POST['email']))
$email = fix_string($_POST['email']);
$fail = validate_email($email);
function validate_email($email)
{
if ($email == "") return "No Email was entered<br />";
else if (!((strpos($email, ".") > 0) &&
(strpos($email, "@") > 0)) ||
preg_match("/[^a-zA-Z0-9.@_-]/", $email))
return "The Email is invalid<br />";
return "";
echo $email;
}
echo "<html><head><title>An Example Form</title>";
if ($fail == "")
{
echo "</head><body>Form data successfully validated:
$email.</body></html>";
// This is where you would enter the posted fields into a database
exit;
}
// Now output the HTML and JavaScript code
?>
<style>.signup { border: 1px solid #999999;
font: normal 14px helvetica; color:#492842; }
</style>
<script type="text/javascript">
<style>.signup { border: 1px solid #999999;
font: normal 14px helvetica; color:#444444; }</style>
<script type="text/javascript">
function validate(form)
{
fail = validateEmail(form.email.value)
if (fail == "") return true
else { alert(fail); return false }
}
//Sets up borders for Parse Monster and text area to input raw email text
</script></head><body>
<table class="signup" border="0" cellpadding="2"
cellspacing="5" bgcolor="#eeeeee">
<th colspan="2" align="center">Parse Monster!</th>
<tr><td colspan="2">Please begin the parsing process by inputing<br />
desired text below to be parsed! =D
<form method="post" action="parse.php"
onSubmit="return validate(this)">
<br /><br /><br />
<textarea id="email" name="email" style="margin-left: 2px;
margin-right: 2px;
width: 300px; margin-top: 2px; margin-bottom: 2px; height: 32px;
"></textarea>
</tr><tr><td colspan="2" align="center">
<input type="submit" value="Parse" /></td>
</tr></form></table>
parse.php
<?php
validate_email($email);
$email = $_POST['email'];
echo "<br><br>--------------------Inputed Email--------------------<br><br>" . $email;
echo '<br><br><br><br>--------------------Parsed Email--------------------';
/*Separates email into manageable parts to use.
Repeat process of pulling text from strings until all required fields are found.*/
$partone = substr($email, strripos($email,"html; charset=ISO-8859-1")+strlen("html; charset=ISO-8859-1"));
$get_from = substr($email, strripos($email,"From:")+strlen("From:"));
$get_date = substr($email, strripos($email,"Date:")+strlen("Date:"));
$get_sub = substr($email, strripos($email,"Subject:")+strlen("Subject:"));
//Separates further
$parttwo = explode("--",$partone);
$from = explode("To:", $get_from);
$to = explode("Content", $from[1]);
$date = explode("Delivered", $get_date);
$sub = explode ("From:", $get_sub);
//Output all the parsed data
echo "<br /> Date: " . $date[0];
echo "<br /> From: " . $from[0];
echo "<br /> To: " . $to[0];
echo "<br /> Subject: " . $sub[0];
echo "<br /><br />" . $parttwo[0] . "<br />";
?>