Search engine script

Follow me on TwitterRSS Feeds

  • Home
  • RUN A SEARCH ENGINE

LOOKING FOR STOCK QUOTE SCRIPT (PHP)

Jan 28th

Posted by admin in FAQ

No comments

Search engine

Question by Delete:
Looking for Stock Quote Script (PHP)

I am looking for a free detailed stock quote script to at to my website. I would like a perl script that is crawl-able by search engines. Thanks for your help!

Read More >>

looking, Quote, script, Stock

HOW DID THE GOOGLE GUY MAKE HIS OWN SEARCH ENGINE?

Jan 27th

Posted by admin in FAQ

2 comments

Question by GSDMAN:
How did the google guy make his own search engine?

How did he put all the info in there?

Read More >>

engine, google, search

PHP READING FILES SCRIPT PROBLEM?

Jan 26th

Posted by admin in FAQ

No comments

Question by :
PHP Reading files script problem?

I am having trouble with my PHP classes and was hoping someone could help me complete this script because it has me beat. I realize that this is suppose to be very basic, I am just having a very difficult time with it.

So basically, I need to

Read the file line by line, and use the explode and list functions to extract the category, rating, URL, and description. Use that information to write out a web page that contains each link and description, such as the following:

Maps
hopstop.com – A good way to find your way from here to there in major cities.

News
chicagotribune.com – The on the web version of the Chicago Tribune newspaper

Maps
mapquest.com – Find an address on a map or get directions from one place to another. ‘

At the moment I have this, ( I know that the explode command has to be in the wrong place I just dont know what I am missing.

My text file I am reading is named results.txt and everything that depends on it is in the correct place.
An example of the text it has is.

Random|3|google.com|Search Engine
Humor|9|whiteninjacomics.com|The adventures of White Ninja.
Games|5|wowhead.com|For all your WoW needs
Science|9|www.blender3d.com|A free open-source 3d graphics program!
News|8|digg.com|tech news
Random|1|myspace.com|Laugh at em.

The first field being the category the second being the rating and the third is the actual URL.

< ?php

$ filename = "../write/results.txt";

print "

Results.txt”;

if(($ fp=fopen($ filename,”r”))===false)
print(“Couldnt open the file”);
else
{
$ line = fgets($ fp);
while (!feof($ fp))
{

print htmlentities($ line).’
‘;

$ line = fgets($ fp);
}
fclose($ fp);

}

print “


“;

$ line=”games|9|http://www.gamefaqs.com”;
$ a = explode(“|”,$ line);
list($ Category,$ Rating,$ URL) = $ a;
print(“$ Category,$ Rating,$ URL
“);

?>
That really Helped thanks!

Do you know how I would be able to split the data up into their categories and then have them listed by rank ex:

Also how would I make the URLs actual links?

Maps
1 mapquest.com – Find an address on a map or get directions from one place to another.
2 hopstop.com – A good way to find your way from here to there in major cities.

News
5 chicagotribune.com – The on the web version of the Chicago Tribune newspaper

etc.

Read More >>

files, problem, Reading, script

WHAT’S THE BEST SOCIAL NETWORKING PROGRAM/SITE, THAT ALLOWS SOMEONE TO BUILD A NETWORK LIKE MYSPACE?

Jan 25th

Posted by admin in FAQ

No comments

Question by Billy Rowe:
What’s the ideal social networking program/site, that grants someone to build a network like Myspace?

I would like to know how Tom runs myspace.
I think I would like to know how, and begin one of my own.

I tried a lot search engines to search for Build Social Networking.
I tried some sites, like Ning, Kickapps, goingon, and elgg.
Which one or any social networking sites will look like Myspace, and act like myspace?

Read More >>

allows, best, build, like, Myspace, network, networking, program/site, social, someone, What's

CAN YOU USE MS ACCESS AS A SEARCH ENGINE? IF SO, HOW CAN I DO IT?

Jan 24th

Posted by admin in FAQ

1 comment

Question by PEACH:
Can you use MS ACCESS as a search engine? If so, how can I do it?

I build a small database but I need to retrieve the information as if I was using a search engine, for example, if you search for POTATO and this is one of the fields on the database, how do I add a search button so I can click it and it comes up with how many POTATOES are there in the database. I hope it is clear. I tried looking for information on ms access website and other manual but it doesn’t help me much. Maybe I need another software? Please help. Thank you very much.

Read More >>

access, engine, search

DOES A SEARCH ENGINE OWN THE SEARCHES PEOPLE PERFORM?

Jan 23rd

Posted by admin in FAQ

No comments

Question by stonerosedesigndotcom:
Does a search engine own the searches people perform?

Suppose a person searches an engine because they are considering trademarking a term or patenting an idea…does the search engine have the right to sell those terms to perhaps a marketing research company?

What promises does a search engine make to not profit from the terms people use to search with?

Read More >>

engine, people, perform, search, searches

PROBLEM WITH LIVE SEARCH – JQUERY (OR PHP?)?

Jan 22nd

Posted by admin in FAQ

No comments

Question by :
Problem with live search – jquery (or php?)?

Right now, I am designing a web page with a live search engine that fetches data from the database and styles it into a proper search result. The biggest problem I am experiencing is that you have to enter the exact same words in the exact same sequence as in the database, if you want to see the results. However, i.e when you enter keywords in Google, it does not look for exactly the same sequence, but it scans through the database and finds the keywords in a passage.

All in a few words, when the entry in my database is “Database entry”, I have to write “Database entry” in the search bar if I want to get the result. How ever, I want to be able to write “Entry database” and get the same result.

This is the script that I am using:

And here is my php code without the root, admin and password :) –>

mysql_select_db(“test1″) or die(mysql_error());

$ partialStates = $ _POST['partialState'];

$ says = mysql_query(“SELECT * FROM says WHERE name LIKE ‘%$ partialStates%’”);
while($ say = mysql_fetch_array($ states)) {
echo
“

“.

“

“.

“

“.
““.$ state['name'].”“.

“

“.

“

“.$ state['abbrev'].”

“.

“

“.$ state['longdef'].” [...]“.
“

“.

“

“.$ state['link'].
“

“.

“

“.

“

“.

“”
;
}
?>

So, that is all. Please help me manipulate my code and make it able to search keywords in a passage.

Read More >>

jquery, live, problem, search

HOW CAN I MAKE MY OWN SEARCH ENGINE?

Jan 21st

Posted by admin in FAQ

2 comments

Question by Alex:
How can I make my own search engine?

I want to make my own search engine. Custimize it I mean. Like, its ok if it uses Google tecnoligy, but I want to make something like these:

http://pinkle.net/

http://greenle.net/

http://www.thebluesearchengine.com/

something like that…

Read More >>

engine, search

DO U FIND IT EXTREMELY SAD THAT 66% OF KIDS AGES 13-17 LOOKED UP, “WHO IS BIN LADEN,” ON YAHOO’S SEARCH ENGINE?

Jan 20th

Posted by admin in FAQ

19 comments

Question by JJ Jackson:
Do U find it extremely sad that 66% of children ages 13-17 looked up, “Who is Bin Laden,” on Yahoo’s search engine?

I am only 21 but even I half to wonder what children these days learn about in their daily lives. These children are going to be adults one day and they are going to run the country. America really does have a sad future.

Read More >>

1317, ages, engine, extremely, find, kids, Laden, looked, search, yahoo's

*URGENT* HOW CAN I EDIT THIS SEARCH FUNCTION JAVASCRIPT TO WORK WITH MY WEBSITE?

Jan 19th

Posted by admin in FAQ

No comments

Question by Yiaggi:
*URGENT* How can I edit this search function JAVASCRIPT to work with my website?

Hi guys,

I urgently require a search website function for a website I have built. I need it to simply search my website by keyword and deliver the results in an organised manor.

I have been iven a JAVASCRIPT solution which looks like it could work but I am an amature when it comes to JAVASCRIPT and have no idea which part of the code I need to edit to make it work with my site! I have some PHP experience but no JAVASCRIPT.

Below is the code – could someone please explain which bits to edit? Thank you for your time – you are properly saving my bacon!

CODE
———



Free JavaScripts provided
by The JavaScript Source

ps …. I SEE THE BIT THAT SAY’S “THIS IS WHERE THE MAGIC HAPPENS” BUT AM CONFUSED ABOUT WHAT VARIABLES TO ADD THERE …….. ! Any help would be truly appreciated – I have till the end of this day to complete!

Ta x

Read More >>

*URGENT*, edit, function, JavaScript, search, this, website, work
12345»102030...Last »
    • Recent comments
    • Popular posts
    • Archives
    • Tags
    • Categories
    • Articles (1)
    • FAQ (1002)
    .html about Anyone best better build building code create engine engines find free from good google help information know like link links mysql Need Optimization page people Please results script search should site sites software someone start their there this using want website would yahoo
    • January 2012 (27)
    • December 2011 (26)
    • November 2011 (29)
    • October 2011 (30)
    • September 2011 (28)
    • August 2011 (30)
    • July 2011 (30)
    • June 2011 (30)
    • May 2011 (28)
    • April 2011 (29)
    • March 2011 (30)
    • February 2011 (27)
    • January 2011 (30)
    • December 2010 (29)
    • November 2010 (29)
    • October 2010 (61)
    • September 2010 (80)
    • August 2010 (87)
    • July 2010 (61)
    • June 2010 (21)
    • May 2010 (62)
    • April 2010 (109)
    • March 2010 (88)
    • February 2010 (2)
    • HAVE YOU EVER TYPED YOUR OWN SCREEN NAME INTO THE QUESTION SEARCH ENGINE? (26)
    • DO U FIND IT EXTREMELY SAD THAT 66% OF KIDS AGES 13-17 LOOKED UP, “WHO IS BIN LADEN,” ON YAHOO’S SEARCH ENGINE? (19)
    • HOW CAN I BUILD MORE TRAFFIC FOR MY WEBSITE? (17)
    • DO YOU BELIEVE IT IS RUDE TO LINK TO THE GOOGLE SEARCH ENGINE IN HERE? (16)
    • DO YOU BELIEVE IT IS RUDE TO LINK TO THE GOOGLE SEARCH ENGINE IN HERE? (15)
    • DO YOU LIKE MY OWN SEARCH ENGINE? (12)
    • WHAT IS THE BEST SEARCH ENGINE??? (12)
    • CAN YOU BELIEVE THAT RON PAUL HAS HIS OWN SEARCH ENGINE? DO ANY OTHER CANDIDATES HAVE THAT? (11)
    • HOW DO I ADD MY WEBSITE TO SEARCH ENGINES LIKE GOOGLE, YAHOO, AOL? (11)
    • DO YOU LIKE MY OWN SEARCH ENGINE? (11)
    • memetrader: Sergey Brin and Lawrence Page built the Google search engine and you can read a description of...
    • piken979: if I knew the answer to that question i'll be freaking rich dude
    • fathead: You can generate db queries from VB, C++, C#, you name it. If you aren't a software engineer then...
    • James M. Helms: Neat, I think that you should! Yes, Google Custom Search would be a great place to start.
    • Old South: I made http://www.google-it-now.com
    • it's momo, b!tch: I'm 20, so I knew who Bin Laden was. But throughout the years of school, we never actually talked...
    • ILS31: No, I don't find it sad. I find it normal. The last thing that a 13 to 17 year old is concerned...
    • Malcolm Tucker: my guess is that a lot of their parents have sheltered them. they were 3-7 years old when 9/11...
  • Tag Cloud

    .html about Anyone best better build building code create engine engines find free from good google help information know like link links mysql Need Optimization page people Please results script search should site sites software someone start their there this using want website would yahoo

    WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.

  • Recent Posts

    • LOOKING FOR STOCK QUOTE SCRIPT (PHP)
    • HOW DID THE GOOGLE GUY MAKE HIS OWN SEARCH ENGINE?
    • PHP READING FILES SCRIPT PROBLEM?
    • WHAT’S THE BEST SOCIAL NETWORKING PROGRAM/SITE, THAT ALLOWS SOMEONE TO BUILD A NETWORK LIKE MYSPACE?
    • CAN YOU USE MS ACCESS AS A SEARCH ENGINE? IF SO, HOW CAN I DO IT?
  • Categories

    • Articles
    • FAQ
RSS Feeds XHTML 1.1 Top