ok first off please dont hate me for posting this question, i have searched and read and searched again, and still cannot get my content to show up in my dang emails. the email comes, but no content
<?
$Subject = "woOt";
$toEmail = "david.Collier@nan02.usace.army.mil";
$email = $_POST['email'];
$namel = $_POST['name'];
if($submit)
{
mail($email, $Subject, $message."
From: ".$email_from_name."<".$email.">");
}
?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#ececec" text="#000000">
<p> </p>
<p> </p>
<form name="contact" action="<? echo($PHP_SELF) ?>" method="post">
<table width="461" border="0" align="center">
<tr>
<td width="88">
<div align="right"><font face="Tahoma, Arial, Verdana">Name:</font></div>
</td>
<td width="363">
<input type="text" name="name" size="25">
</td>
</tr>
<tr>
<td width="88">
<div align="right"><font face="Tahoma, Arial, Verdana">Email:</font></div>
</td>
<td width="363">
<input type="text" name="email" size="25">
</td>
</tr>
<tr>
<td width="88">
<div align="right"><font face="Tahoma, Arial, Verdana">Phone:</font></div>
</td>
<td width="363">
<input type="text" name="phone" size="25">
</td>
</tr>
<tr>
<td width="88" valign="top">
<div align="right"><font face="Tahoma, Arial, Verdana">Message:</font></div>
</td>
<td width="363" valign="top">
<textarea name="message" cols="30" rows="9"></textarea>
</td>
</tr>
<tr>
<td width="88">
<div align="right"></div>
</td>
<td width="363"><input type="submit" value="submit"></td>
</tr>
</table>
<?
echo " $name "
?>
</form>
</body>
</html>
now i do know that all the variables are not accounted for, but this is only a test to try to get at least one variables to go through in the email.
thanks boyz