My script is based of php but does not use MySQL. But i can make a database need be.
My goal:
1. index.php to show in a box top 20 most recently searched.
2. search.php to show the most searched.
3. Have a top500.php displaying the top 500 searched words.
4. Some how compile all the searched terms into a site map.
I really want to learn this. I am going to school as a web designer, but we are still on HTML and CSS. Any contributions would be greatly appreciated.
The why my site works is as fallows:
1. Index.php has just a search box.
2. Once they have clicked search it displays all the results.
What does my search form look like?
How are links displayed after a term has been displayed?
domain.com/search.php?search=wjunction&search_button=Search
Not sure if this really matters.
Please let me know how all this could be accomplish to work. Thank you for reading this.
My goal:
1. index.php to show in a box top 20 most recently searched.
2. search.php to show the most searched.
3. Have a top500.php displaying the top 500 searched words.
4. Some how compile all the searched terms into a site map.
I really want to learn this. I am going to school as a web designer, but we are still on HTML and CSS. Any contributions would be greatly appreciated.
The why my site works is as fallows:
1. Index.php has just a search box.
2. Once they have clicked search it displays all the results.
What does my search form look like?
PHP:
<div id="search_main">
<form id="search" action="search.php" class="form_search" method="get" name=
"search">
<input id="term" type="text" placeholder="Enter the torrent you want here..."
name="search" value="" class="search_input" /> <input id="submit" type="submit"
value="Search" name="search_button" class="search_button" />
</form>
</div>
domain.com/search.php?search=wjunction&search_button=Search
Not sure if this really matters.
Please let me know how all this could be accomplish to work. Thank you for reading this.
Last edited: