iGuest 3 Report post Posted February 11, 2005 Ok, i found a script that i'm trying to use, but i'm having a problem with it. What happens is, whenever a user visits the page that has the script on it, it mails me a blank email. It's kinda confusing, because i dont really know anything about php mailing stuff, anyway here's the script. <script LANGUAGE="php"> $email = $HTTP_POST_VARS[email]; $mailto = "admin@ghost-killa.shwaza.hostmatrix.org"; $mailsubj = "Comment sent by visitor"; $mailhead = "From: $emailn"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form:n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $valn"; } mail($mailto, $mailsubj, $mailbody, $mailhead);</SCRIPT> Share this post Link to post Share on other sites
iGuest 3 Report post Posted February 11, 2005 Stop posting questions in two places. I just answered your question in your other thread.~locked Share this post Link to post Share on other sites