Posted by Rik on 03/11/07 07:30
bombardier <bobkaku@gmail.com> wrote:
> I just switched ISPs and am in the process of moving all MySQL
> databases and PHP scripts to the new ISP. I have some simple HTML
> forms that post to simple PHP scripts that used to work with my old
> ISP, but don't work on the new ISP. The entered values don't seem to
> be passed to the PHP script.
> The script parses fine. But it thinks that the $fromemail value is
> empty and exits at the first "if" condition, when in fact a non-Null
> value was entered on the form.
>
> The version of PHP I'm currently using with the new ISP is 4.4.4. The
> old ISP was using an older version.
register_globals is off, like it should be. User the
$_GET/$_POST/$_REQUEST array.
--
Rik Wasmus
Posted on Usenet, not any forum you might see this in.
Ask Smart Questions: http://tinyurl.com/anel
[Back to original message]
|