Hi,
I have created a form in Dreamweaver and connected mySQL database to it. I am having great trouble in creating a script for it. I have found many on the internet but just cannot get my head around it. The php code I have so far is:
<?php
$username = "root";
$password = "";
$hostname = "localhost";
$dbh = mysql_connect($hostname, $username, $password)
or die("Unable to connect to MySQL");
print "Connected to MySQL<br>";
$selected = mysql_select_db("jobjar",$dbh)
or die("Could not select jobjar");
?>
and I have attached a print screen of my form and what it looks like when previewed in firefox... can anyone help?
php coding for search form
Moderator: General Moderators
php coding for search form
- Attachments
-
- form.JPG (40.88 KiB) Viewed 66 times
Re: php coding for search form
It's not clear what you are asking.
Re: php coding for search form
Hi, I am having difficulties creating a script in which the user can search the form selecting their criteria, hit the search button and the results will be displayed. I have come across many basic search scripts on the internet but they are not what I am looking for.
Thanks
Thanks
Re: php coding for search form
Using the search terms php search form, Google returns many good tutorials and examples of how to generate search forms with PHP, all of them much more comprehensive than anything I could write. Here's an excellent and thorough reference: http://www.webreference.com/programming/php/search/