PHP Version 3.0.16

-----Original Message-----
From: Jason Wong [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, July 21, 2002 2:26 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] No text in form submission

On Monday 22 July 2002 01:52, Dean Ouellette wrote:
> Been working on trying to get form submission to work.
>
> Now have it so when click enter it e-mails me, but there is no text
> subitted in the e-mail

What version of php are you using?

> <?
> $MailToAddress = "[EMAIL PROTECTED]";
> $MailSubject = "Group volunteer  list";
> if (!$MailFromAddress) {
>     $MailFromAddress = "$email";
>     }
> $Header = "";
> $Footer = "";
>
> foreach($_POST as $key => $val)
>     {
>     $val = stripslashes($val);
>     $Message .= "$key = $val\n";
>     }

What do you see when you:  print_r($_POST)


-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
<JALH> regex are more than some crappy posix thing
<JALH> they are an art form

        - Marc Zealey on #kernelnewbies
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to