LOOKING FOR STOCK QUOTE SCRIPT (PHP)
Jan 28th
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 >>
HOW DID THE GOOGLE GUY MAKE HIS OWN SEARCH ENGINE?
Jan 27th
Question by GSDMAN:
How did the google guy make his own search engine?
How did he put all the info in there?
Read More >>
PHP READING FILES SCRIPT PROBLEM?
Jan 26th
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 >>
WHAT’S THE BEST SOCIAL NETWORKING PROGRAM/SITE, THAT ALLOWS SOMEONE TO BUILD A NETWORK LIKE MYSPACE?
Jan 25th
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 >>
CAN YOU USE MS ACCESS AS A SEARCH ENGINE? IF SO, HOW CAN I DO IT?
Jan 24th

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 >>
DOES A SEARCH ENGINE OWN THE SEARCHES PEOPLE PERFORM?
Jan 23rd
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 >>
PROBLEM WITH LIVE SEARCH – JQUERY (OR PHP?)?
Jan 22nd
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
“
“
“
“.
“
“.
“
“
“.
“
“
“.
“
“.
“
“.
“”
;
}
?>
So, that is all. Please help me manipulate my code and make it able to search keywords in a passage.
Read More >>
HOW CAN I MAKE MY OWN SEARCH ENGINE?
Jan 21st
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 >>
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
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 >>
*URGENT* HOW CAN I EDIT THIS SEARCH FUNCTION JAVASCRIPT TO WORK WITH MY WEBSITE?
Jan 19th
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 >>