Jump to content

No more results, stop searching


The Little Guy

Recommended Posts

I am currently using AJAX to do an "Auto-complete".

 

Using the following:

if(ibox.value.length > 3 && result.length == 0 && found == 0){
connect[0].open("POST", '/process/getSuggestions.php', true);
connect[0].setRequestHeader("Content-Type", connect[1]);
connect[0].send(va);
}

 

I connect to the server and obtain the results

 

If there are no results after previous results were returned, I don't want to do what is in the if() statement.

Basically it is like Google's auto complete, when someone types something it searches for something to search for and suggests it.

I currently have the same thing, but after the person types something and say he/she gets results then if he/she keeps typing and soon there are no suggestions left, and then I want to stop going into the if() statement because that will just be a lot of work on my server.

 

How can I do this?

Link to comment
https://forums.phpfreaks.com/topic/186236-no-more-results-stop-searching/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.