Re: [PHP-DB] enter key?

2002-01-17 Thread Jason Wong
On Friday 18 January 2002 01:30, James Kupernik wrote: > Sorry about that > > > if ($submit) { This is probably where your problem is. Which browser are you using? To fix this you could include a hidden element in your form and check for this rather than checking for "submit". > > You ca

Re: [PHP-DB] enter key?

2002-01-17 Thread James Kupernik
Sorry about that Hi $person, here are the catalog requests\n"; $db = mysql_connect("localhost","login","password"); mysql_select_db("countryloft"); $result = mysql_query("SELECT * FROM catalogs"); echo "\n";

Re: [PHP-DB] enter key?

2002-01-17 Thread Jason Wong
On Friday 18 January 2002 00:25, James Kupernik wrote: > I found the problem in the form and fixed that, but now anytime I want to > submit the form by hitting enter, it acts like it's reloading the page. > What would be the cause of that? When I click on the submit button the > verification and p

[PHP-DB] enter key?

2002-01-17 Thread James Kupernik
I found the problem in the form and fixed that, but now anytime I want to submit the form by hitting enter, it acts like it's reloading the page. What would be the cause of that? When I click on the submit button the verification and program function correctly, but when I hit enter, they do not.