[PHP] using HTML objects into PHP code

2002-02-04 Thread Eduardo Melo
How can i accessa HTML object into a PHP code ? as such as : select name=~x~ option A option option B option option C option /select) How can a access ~x~ content into a PHP variable ? best regards, eduardo melo copmuter programmer

Re: [PHP] using HTML objects into PHP code

2002-02-04 Thread David Otton
On Mon, 04 Feb 2002 09:32:31 -0200, you wrote: First, you need to fix those tags : select name=~x~ select name=x option A option option A /option How can a access ~x~ content into a PHP variable ? It happens automatically. When you submit a form, PHP variables are created for the

Re: [PHP] using HTML objects into PHP code

2002-02-04 Thread bvr
best regards, eduardo melo copmuter programmer Any cops on this list: watch out for this guy! bvr. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] using HTML objects into PHP code

2002-02-04 Thread Evan Nemerson
ereg() and eregi() should help. Maybe even explode(). On Monday 04 February 2002 03:32, you wrote: How can i accessa HTML object into a PHP code ? as such as : select name=~x~ option A option option B option option C option /select) How can a access ~x~ content into a PHP