| TOTAL: 3 Page: 1 of 1 |
|
Fuzzy Searching in PHP
This tutorial discusses creating an advanced fuzzy search engine using PHP and a database.

| Hits: | 12 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2008-03-25 |
PHP Search
In a series of tutorials here at Insane Visions, we have shown some of the basics of PHP and continue it with how to enable visitors to search your site, using PHP. We'll take you step by step on a fairly simple search feature. From the actual form, to the results and several things you can do to make your search better.


| Hits: | 33 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-02-14 |
PHP Site Search
In this tutorial I will teach you how using dreamweaver you can create a site search. It is very simple, the main part is creating a database to store the information you will be searching. If you are having problems feel free to e-mail us, or post a message on the forum.

| Hits: | 32 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-07-25 |
Searching in Context With PHP - Bring context to your PHP search results
So you've built a website and a basic search function. Your results either just show the first bit or none of the searched field. By looking at your results, you haven't got the slightest clue whether that information is something you want to access or not. It confusing and actually almost making you not want to use the results. So what do you do? The answer is showing the result in context. In short, that means to show where the result was found and some of the text around it. So let's get t

| Hits: | 121 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-18 |
Whois Search - Easily create your own whois search
Creating a whois search is really easy, in fact all you have to do is add this code to your html. PHP Code if($site != "") { exec("whois $site", $output, $error); while (list(,$line) = each($output)){ echo $line, " \\n"; } } ?> 2. Now where you want the actuall search fields to be displayed, insert this code. Code

| Hits: | 112 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-18 |
Google Search - Make your own PHP text box link to Google
n this tutorial I will show you how to create a text box so that when you click search it will search Google. Fist start off in you php file then add your form in php: CODE echo '
'; } ?> That will be the forum part of your script. Notice how the submit action is this is so that it will submit to it self. Now add this script A
| Hits: | 43 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-18 |
Using Md5 - Use Md5 For Secure Encrypted Password via PHP
Some of you might know that it is a bit more secure to encropy passwords on your usersystem so people can hack you and steal your passwords. All you need to do is type in this code PHP Code $password = md5($password); If you dont know what md5 is it is encrypting your passwords to make it more secure If you need more info about md5 go to http://au.php.net/manual/en/function.md5.php Now remember when you want the people to login just have something like this PHP Code $pass =

| Hits: | 40 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-18 |
Displaying Query Results
this tutorial assumes you have taken the mysql basic commands tutorial, or are familiar with connecting to and selecting a database, and running queries. Whilst there are a few ways to display the results of a query using PHP, I'm going to show you, i am going to show you (in my opinion) the easiest method - gathering the results of the query into an array.

| Hits: | 74 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-18 |
Creating a Search Application
In this tutorial, we will discuss a method of searching web pages for keywords. We will provide methods for exact keyword matching and a type of fuzzy search. Fuzzy searching enables us to find words that are similar to the keyword we searched for. This is extremely useful when the search for an exact keyword does not produce any results. In fact, in our search script we will only utilize fuzzy searching when we do not get results from a normal keyword search. In order to create the search ap

| Hits: | 80 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-18 |
mySQL Search Engine
This tutorial will teach you how to search a mySQL table. It goes along with several others that use the same news database such as Add a Row to mySQL, Deleting a Row, and Edit a Row In mySQL. We have a database called spoono_news, with a table called news. In the mySQL news table, we have 6 fields: id, title, message, who, date, and time. You can see the mySQL code here: mysql.txt. This useful script can search a mySQL database and spit out the results as you want them. This one in particula

| Hits: | 57 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-18 |