473,569 Members | 2,764 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Search engine with textbox, dynamic dropdown with MySql. Need Help

13 New Member
Hello everyone, this is my first post here so I will try to make it as clear as possible.

Firstly i have a database with a single table named "albums" with the following fields:
Expand|Select|Wrap|Line Numbers
  1. albumid    int(11)         
  2. genreid    varchar(30)     
  3. albumtitle    varchar(30)     
  4. albumauthor    varchar(30
  5. numberofsongs    int(11     
  6. price    int(11)
Then i have two php pages

Search.php :
Expand|Select|Wrap|Line Numbers
  1. <html>
  2.  
  3. <center>
  4.  
  5. </br></br></br></br>
  6.  
  7. <img src="guitarlogo.jpg" alt="Music Database"/>
  8.  
  9. <form method="GET" action="Result.php">
  10.  
  11. <h2><b>Search Music Database:</b></h2>
  12.  
  13. <input type="text" name="mts" />
  14. <input type="submit" name="submit" value="Search" />
  15. </form>
  16.  
  17. <?php
  18. $connection = mysql_connect("localhost","root",""); 
  19. $fields = mysql_list_fields("ea09039", "albums", $connection); 
  20. $columns = mysql_num_fields($fields); 
  21. echo "<form action=Result.php method=POST>"; 
  22.  
  23. echo "<select name=Field>";
  24. for ($i = 0; $i < $columns; $i++) { 
  25. echo "<option value=$i>"; 
  26. echo mysql_field_name($fields, $i); 
  27. echo "</select></form>"; 
  28. ?>
  29.  
  30. </center>
  31.  
  32. </html>
  33.  
and Result.php :

Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3. include("db.php");
  4.  
  5. $mts=$_GET["mts"];
  6. $Field=$_GET["Field"];
  7.  
  8.  
  9. $query="select * from albums where '$Field' like '%$mts%'";
  10.  
  11. $res2=mysql_query($query);
  12.  
  13. while($row=mysql_fetch_row($res2))
  14. {
  15. echo $row[2];
  16. echo " has author ";
  17. echo $row[3];
  18. echo " and costs ";
  19. echo $row[5];
  20. echo " Euro.";
  21. echo " And is from the genre ";
  22. echo $row[1];
  23. echo "<br/>";
  24. }
  25.  
  26. ?>
  27.  
This is as far as i have gotten with this, but i keep getting errors.
Please if someone can help I would be very thankful.
Dec 10 '10 #1
12 7104
JKing
1,206 Recognized Expert Top Contributor
Okay, so what are your errors? What is it doing? What is it supposed to be doing?
Dec 10 '10 #2
Xicer
13 New Member
Right now it's just giving me a blank page.

I wrote the word "blue" in the textbox and selected "albumtitle " from the dropdown list(which is dynamically popullated from a table in a MySQL database).

This is what i get at the address bar after i do a search:
Expand|Select|Wrap|Line Numbers
  1. http://localhost/ea09039/HOMEWORK2/Result.php?mts=blue&submit=Search


As for what is it supposed to be doing,
I need it to take the input from the textbox, and search within the column from the table that is selected from the dropdown list which are in Search.php and show the results in Result.php.

I hope i was clear :)
Dec 10 '10 #3
JKing
1,206 Recognized Expert Top Contributor
It looks like you have two forms on your search.php page. The first form only has a text input for mts and a submit button. These are sent to result.php via GET.

Your second form has a select named field and this form is sent to result.php via POST however there is no submit button for this form.

On result.php you try to retrieve the field variable via $_GET but you have never sent it with GET or at all because it is part of another form that doesn't get submitted and if it were sent it would be in the $_POST.

Now since your $field variable is never populated your query fails and so does your while loop and you end up with no output.

The solution here is to make the select part of your first form.

Also use mysql_real_esca pe_string() on any variables you pass to the database.
Dec 10 '10 #4
Xicer
13 New Member
Okay thank you for the reply.
I restructured my code and I believe there is one more problem left.

Here is the code for Search.php
Expand|Select|Wrap|Line Numbers
  1. <html>
  2.  
  3. <center>
  4.  
  5. </br></br></br></br>
  6.  
  7. <img src="guitarlogo.jpg" alt="Music Database"/>
  8.  
  9. <h2><b>Search Music Database:</b></h2>
  10. <?php
  11. $connection = mysql_connect("localhost","root",""); 
  12. $fields = mysql_list_fields("ea09039", "albums", $connection); 
  13. $columns = mysql_num_fields($fields); 
  14.  
  15. echo "<form action=Result.php method=GET>";
  16. echo "<input type=text name=mts/>";
  17. echo "<select name=Field>"; 
  18.  
  19. for ($i = 0; $i < $columns; $i++) { 
  20. echo "<option value=$i>"; 
  21. echo mysql_field_name($fields, $i); 
  22. echo "</select>"; 
  23. echo "<input type=submit name=submit value=Search />";
  24. ?>
  25.  
  26.  
  27. </center>
  28.  
  29. </html>
  30.  
The problem is that the Field variable returns the number of the position on the table. For example If i select albumtitle from the dropdown the Field variable return the position of the column albumtitle which is 2. I need it to return the name of that column not it's position.

Here is the result of the address barr
Expand|Select|Wrap|Line Numbers
  1. http://localhost/ea09039/HOMEWORK2/Result.php?mts/=blue&Field=2&submit=Search
Here is the Results.php file again:
Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3. include("db.php");
  4.  
  5. $mts=$_GET["mts"];
  6. $Field=$_GET["Field"];
  7.  
  8.  
  9. $query="select * from albums where '$Field' like '%$mts%'";
  10.  
  11. $res2=mysql_query($query);
  12.  
  13. while($row=mysql_fetch_row($res2))
  14. {
  15. echo $row[2];
  16. echo " ka autor ";
  17. echo $row[3];
  18. echo " dhe kushton ";
  19. echo $row[5];
  20. echo " Euro.";
  21. echo " Dhe eshte nga zhanri ";
  22. echo $row[1];
  23. echo "<br/>";
  24. }
  25.  
  26. ?>
  27.  
Any ideas?
Dec 10 '10 #5
Samishii23
246 New Member
If your looking for an auto complete drop down from a text box. You could try this: http://jqueryui.com/demos/autocomplete/
Dec 10 '10 #6
Xicer
13 New Member
Not what I'm looking for, but it might come in handy in the future. Thanks anyway
Dec 10 '10 #7
JKing
1,206 Recognized Expert Top Contributor
The problem is that the Field variable returns the number of the position on the table. For example If i select albumtitle from the dropdown the Field variable return the position of the column albumtitle which is 2. I need it to return the name of that column not it's position.
Well of course it is. You are setting all your option values equal to $i in your for loop and not the field name.
Dec 10 '10 #8
Xicer
13 New Member
Okay thank you i understand my mistake, but could you please show me how should the code look, i can not seem to figure it out.

P.S im new to php so please have patience with me :)
Dec 10 '10 #9
Samishii23
246 New Member
Expand|Select|Wrap|Line Numbers
  1. $_id = $_POST['Field'];
  2.  
  3. while($row=mysql_fetch_row($res2)) {
  4.     if ( $row['id'] == $_id ) {
  5.         $_name = $row['name'];
  6.         }
  7.     }
Or something like that. Basicly compare the id from the $_POST variable or instead of that...
Expand|Select|Wrap|Line Numbers
  1. $connection = mysql_connect("localhost","root",""); 
  2. $fields = mysql_list_fields("ea09039", "albums", $connection); 
  3. $columns = mysql_num_fields($fields); 
  4.  
  5. echo "<form action=Result.php method=GET>";
  6. echo "<input type=text name=mts/>";
  7. echo "<select name=Field>"; 
  8.  
  9. for ($i = 0; $i < $columns; $i++) { 
  10. echo "<option value='". mysql_field_name($fields, $i). "'>"; 
  11. echo mysql_field_name($fields, $i); 
  12. echo "</select>"; 
  13. echo "<input type=submit name=submit value=Search />";
Dec 10 '10 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

2
1515
by: vichet | last post by:
Hi All; Please help me with some problem i want VBSCRIPT to search something in only my own website give me code thank vichet
2
1457
by: sathyashrayan | last post by:
dear group, I have been working VC++ for some time. My company assigned me a task for an online dictionary search site similar to the onelook.com which I have to make it in php mysql. Since I never did any of the project in the search engine , can any one guide me to the above? I am really struggling to understand the following: When I...
5
2490
by: Martien van Wanrooij | last post by:
I have been using phpdig in some websites but now I stored a lot of larger texts into a mysql database. In the phpdig search engine, when you entered a search word, the page where the search word was found was displayed with about 2 lines before and 2 lines behind the search word itself. Let us say you look for "peanut butter" an the word is...
3
2650
by: hazly | last post by:
I'm very new in the web technology and need advice on search engine. I want to develop a portal using PHP and MySQL on Linux. Need to know on the following features : 1. search engine that could search my portal (mySQL, PDF, Ms Word & others) 2. search engine that could search to few web sites specified by user/programmer
0
1020
by: JJ_377 | last post by:
I am trying to populate a two-column dropdown list from a populated datareader (dr) having two fields from the Categories table of the Northwind database: CategoryID and CategoryName. I've used this type of construction successfully with VB.NET (from which I am now transistioning...) and it has worked unfailingly with my dropdowns there. ...
3
1275
by: gaganlatha | last post by:
Hi, I want to create a search engine for my site. When i search a any keyword it should take me to that keyword. The keyword may be a country name, name, month etc. If this available in database it should take me there else if the keyword specified by the user is new it should store that keyword in database and when next time the user give that...
3
2044
by: d1156676 | last post by:
Hi I have a Dynamic dropdown reading in data from a MySql database, I need to refresh the dropdown when the database is updated without refreshing the whole page. I have had a go at trying to use a javascript and getelementbyid but with no sucess. Does any ones have any example or have any ideas on how i can do this. Any help will...
1
3567
by: miraan | last post by:
Hi, I have searched on the internet but can't find a way to disguise a long ugly php url such as www.domain.com/companies.php?id=543 into this: www.domain.com/companyname the folder "companyname" shouldnt really exist. There should be some instructions in .htaccess or something like that (not sure) to show www.domain.com/companies.php?id=543...
2
1229
by: nagendra802000 | last post by:
Hi All, I have created a search engine for MP3 with mysql database. Now I want to connect each search result with its respective info page which will consist with name of the artist, size, year, and so on. Dose anyone knows how to do it? I did created few static pages with all these info. But its impossible to create for thousands of MP3s....
0
7694
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7609
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8118
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7666
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6278
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5504
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3651
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3636
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
936
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.