Jay Blanchard wrote:
[snip]
Hi php-fans... here's a simple question for you
I have this HTML page in WIN (Busqueda.htm)
the page contains a textfield (textfield3)
and a button (submit1)
which calls a php file Buscador.php in a Linux server  (RED HAT 8)

well, my php file which doesn't read anything when I write this

echo ($textfield3)

why can it be?...they seem to be "disconnected" but the php file works because I access a MySql table since it.. with no problems... [/snip]

Try

echo $_POST['textfield3'];

That should work, reason being your server probably has register globals turned off.


G.Solomon

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



Reply via email to