Hi,

If you expect your variables to be generated automatically, you may find
that newer versions of PHP have that disabled by default - because it's less
secure.

Try to read $_POST{"formfieldname"} to get your data...

To quickly find out all the post data that you received:
<?php
        print "<pre>"; print_r($_POST); print "</pre>";
?>

Jos

-----Original Message-----
From: MIGUEL ANTONIO GUIRAO AGUILAR
[mailto:[EMAIL PROTECTED]
Sent: 03 May 2005 07:41
To: [email protected]
Subject: [PHP-DB] Where are my form variables?


Hi!!

I created a form with five text boxes, method=post and action=myscript.php;
but I can't see the variables at the target script, why?

Do I need a special sintaxis for accesing the POST array?
Regards,

--------------------------
MIGUEL GUIRAO AGUILERA

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

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

Reply via email to