On Monday 11 November 2002 10:44, rija wrote:
> What am I missing?
>
> My form does not submit when I hit enter in the text box.
> I do something approximately like this :
>
> <form action="index.php?s=add" method=post>
> ....
> <input type=text name=bongabe value=something>
> ...
> <input type=submit value=submit name=submit>
>

What happens when ENTER is pressed depends on what browser you're using. 
Different browsers exhibit different behaviours, eg the old versions of 
Netscape (v4 and before) does not submit on ENTER. Also, put quotes around 
your attribute values eg:

<input type="text" name="bongabe" value="something">

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
The more I know men the more I like my horse.
*/


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

Reply via email to