2 things: enter doesn't work in IE & empty form
Posted on
16th Feb 2014 07:03 pm by
admin
i have this search form that works well except for 2 things.
1) on IE when i hit enter instead of the Submit button, i do not get any result. with firefox, no problem.
2) when i hit submit or enter without putting anything on the search form, it outputs All data from the database.
Did you know?Explore Trending and Topic pages for more stories like this.
any help to fix the issue?
Line number On/Off | Expand/Contract <script type="text/javascript" language="JavaScript">function countryempty(){ if ( document.form.country.value == '' ) { alert('No search was entered!') return false; }}</script> <?$country = $_POST["country"]; // if page is not submitted to itself echo the formif (!isset($_POST['submit'])) { ?> <form method="POST" action="<? echo $PHP_SELF; ?>" onSubmit="return countryempty();"> <p><b>SEARCH</b> a City or Country <input type="text" name="country" size="32"><p> <p>
<input type="submit" value="submit" name="submit"><input type="reset" value="Reset" name="B2"></p> </form> <? } else {?> <? $db_host = ''; $db_user = ''; $db_pass = ''; $db_name = '';$db_table = ''; $conn = mysql_connect($db_host,$db_user,$db_pass); mysql_select_db($db_name,$conn); // The database query follows
No comments posted yet
Your Answer:
Login to answer
219
20
Other forums
Menu restriction
How can I restrict the individual menu that would appear when a user logs in so that all users are c
How do I send data using an html link
Hi
If I have
<a href="main_file.php">
How do I send data t
php code generators
All
Whilst enjoying learning a new language i have come accross a number of free code generat
how to populate a drop down box
Hi buddies!
PROCEDURE DOWNLOAD_REPORT_FORM (report_name varchar)
is
begin
DOWNLO
FROM_UNIXTIME($phpdate);
Hello,
I tried to use this :
$date = FROM_UNIXTIME($phpdate);
ANd I was t
Custom array sort? asc then desc
Any ideas how I could sort this array? I've been trying for a while. Maybe with usort, but I have no
update sql when refresh - php
hi
I have made a table (attachement)
the users can update the sql database using + or x bu
A little help in c#
i am doing a simple paint program using c# i want to draw with the mouse so i wrote the code of the
Nested (echoed) php running wrong script
Got a problem with a php website I'm creating.
In a nutshell, the first page is entirely html
How to generate a text file using php...?
Hi,
Can anyone give me code to generate a text file using php
Thanks in advance