Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Searchable Database

Status
Not open for further replies.

DrySnot

Technical User
Nov 29, 2007
46
0
0
Hello

I am trying to install a search function on my site. I know it will require a mysql database and I know how to set one up I just don't know how to interact with it.

My site is if you look at my search form I am trying to find a program that will let me submit all the information to a database then allow users to pull it up in a search.

Do any of you know of such a program or could you please give me some idea as to where I should start looking?

Thanks so much for the advice

 
I think you are asking a very big question, and no offense, but I don't think you know what is involved and what you are talking about. There isn't "a program" per se. You write the code. Don't worry- just like everybody else I didn't know what I was talking about and what was involved once either (probably still don't, actually).

My best advice is that you are more likely to get useful responses here or anywhere when you ask specific questions and demonstrate that you have done some work.

If you want to use MySQL you can, but you certainly don't need to. You could use Access for example. If you want to use MySQL you are probably looking at coding your pages in PHP. How's your PHP? I use Access and ASP and know nothing about PHP and MYSQL.

I would suggest you do some Internet searching.

Stuff like this maybe:

could point you in the direction you want to go, but others can probably point you to better resources.

HTH.
 
additionally your search.html returns the following error:
[tt]
Not Found
The requested URL /search.html was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/1.3.39 Server at Port 80[/tt]

so it's hard to see what you are trying to do.


Leslie

Have you met Hardy Heron?
 

You probably need to move this question to the forum for the server side language that you use and your host supports.
forum333
forum434

It's also rather poor form to claim standards compliance on a page with 41 errors, even when they are mostly caused by simple misuse of quote marks without escaping them.

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
The original question is quite right here in this forum. And it's perfectly okay if discussion drifts to some specific products.

I wonder: as you don't seem to have a database right now, your database is the html pages of your site, right? Then you could make your site searchable by embedding a site search. This kind of search would be a fulltext search and work best with a simple single textbox for typing keywords or parts of them.

A database on the other side is by definition more or less searchable. You store data in it, not to keep it safe, but to make data uniformly, searchable and usable.

To make a site search, you could use live.com ( or google Adsense (
Bye, Olaf.
 
With due respect the original question was
drysnot said:
I know it will require a mysql database and I know how to set one up I just don't know how to interact with it.
which is why the question is better in the appropriate server technology forum

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
Well, my interpretation of I know was "I believe", as the following sentences reveal, that DrySnot just made a guess here....

Bye, Olaf.
 
Perhaps OP will come back and tell us whether he has got what he needs, or otherwise clarify his question.

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
Sorry for taking so long to respond I was having some trouble logging in.

Please forgive me if this is posted in the wrong place, for the vague questions, for the broken link, and well the pages are valid you must have caught them right after an upload.

Thanks so much for helping me!

[URL unfurl="true"]http://www.tarantuladatabase.com/assets/pages/test.html[/url]

This is kinda what I have been playing around with for php If this is working, I can see how it works a little.

I haven't been able to get connected to the database I did find out that to make a table I go into my cpanel then into phpmyadmin. I made a table with 1 field but I don't understand what format I need to use.

Will i have 1 table for each spider or will i have 1 table called Tarantula with fields called Housing and so on like this.

Code:
Table called Tarantula

>Housing
>>>>>>>>Arboreal
>>>>>>>>Terrestrial
>>>>>>>>Fossorial
>Location
>>>>>>>>New World
>>>>>>>>Old World
>Speed
>>>>>>>>Slow
>>>>>>>>Medium
>>>>>>>>Fast

Is this right at all?
I am confused about the things that I don't know like genes species and color.

and
 
I fear this will be a long slog for you. We now know you are using PHP and MySQL - good start!

1. You need to tackle the basic database design first. To get an understanding of this, read (and understand) - if you have problems with general database design, this is the appropriate forum.

2. Design your queries - this should be really straightforward for this very simple database. You can get help from or (for specific MySQL questions) from forum436. Make sure that you use parametrised stored procedures to protect against SQL injection attacks (google for that if not clear, or do a forum search)

3. When you have a proper database design populated with a good sample of rows you need to go back to HTML to see how the Form element works. There is a simple example and explanation at and any specific questions on this element should be posted in forum215

4. The form that you use as the Action target for the HTML form will contain the PHP that processes the request, triggers the actual database search and displays the results. PHP from square one is a massive undertaking, but you should start at which will get you started. When you have specific PHP questions try or forum434

5. Read BigRed1212's first reply - this is a big task. To see why these forums work, please spend a few moments reading
Good luck - you're going to need it over the next few months! Bear in mind that these forums are for computer professionals, so we expect you to do the research and work first, before asking the questions.

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top