[jQuery] Re: simple form not submitting

2008-10-10 Thread ijlal
hi invincible virus, thanks alot. i changed isset($_POST["submit"]) to isset($_POST["name"]) and the form is submitting now.. thanks again. regards. invincible_virus wrote: > > > I think isset($_POST["submit"]) will return false in your action > handler as input types of 'button' are not sent

[jQuery] Re: simple form not submitting

2008-10-10 Thread invincible_virus
I think isset($_POST["submit"]) will return false in your action handler as input types of 'button' are not sent as GET/POST data. Try changing it to isset($_POST["name"]) or maybe remove this condition at all for testing.

[jQuery] Re: simple form not submitting

2008-10-09 Thread ijlal
hi ricardobeat. thanks for reply. i've set the action attribute but still the form is not submitting. regards. ricardobeat wrote: > > > You need to define the action="" attribute in the form so it can be > submitted, otherwise it's going nowhere. > > - ricardo > > On Oct 9, 11:36 am, ijlal <

[jQuery] Re: simple form not submitting

2008-10-09 Thread ricardobeat
You need to define the action="" attribute in the form so it can be submitted, otherwise it's going nowhere. - ricardo On Oct 9, 11:36 am, ijlal <[EMAIL PROTECTED]> wrote: > hi whats the error wid tese lines of code. the form is not submitting when we > click on go button. i dont want the go but