[PHP] Re: how do I send information to a php page from a menu list

2002-09-02 Thread Javier Montserat
different approach using JavaScript... // drop down redirect function doRedirect(value) { if ((value != "") || (value != "0")) { self.location=value; } else { alert('Please Make a Selection'); return false; } } //--> < make a selection > Bueno, Javier

[PHP] Re: how do I send information to a php page from a menu list

2002-09-02 Thread Erwin
Ivan Carey wrote: > Hello, > how do I send information to a php page from a menu list? > > When a user selects an item from the list I would like to be able to > send "selcategoryid" to faqbycat.php without the use of a submit > button. > > Is it done by using the onChange event? if so how may thi

[PHP] Re: how do I send information to a php page from a menu list

2002-09-02 Thread lallous
Hello Ivan, Don't set a value for that tag! echo "$faqcats"; no need to "name" the tag too, setting the value will be enough. when you submit your form, faqbycat.php will receive $selcategoryid as the user chose from that select list. Elias, "Ivan Carey" <[EMAIL PROTECTED]>