Posted by Good Man on 04/28/06 00:51
"v1nce" <vincecarney@gmail.com> wrote in news:1146164827.696021.172640
@y43g2000cwc.googlegroups.com:
> I changed the PHP script with this:
>
> print_r($_POST);
>
> and it does return the values entered. What's my next step???
join 2003 and get your variables the proper way.
you shouldn't (and can't, according to your config) just get your text
field value by saying
echo $name;
first you need to get the variable from the $_POST array:
$name = $_POST['name'];
echo $name;
voila.
Navigation:
[Reply to this message]
|