admin
This user hasn't shared any biographical information
Posts by admin
I RUN A MORTGAGE WEBISTE…NEED TO PLACE IT IN SEARCH ENGINES TO GENERATE LEADS??
Feb 5th
Question by Ask R:
I run a mortgage webiste…Need to place it in search engines to generate leads??
Can someone help me with how I can get traffic to my website without spending money? Google gets you leads but not good ones.
Read More >>
Q&A: SCRIPT FOR 3 FEMALES?
Feb 4th
Question by made_in_demise:
Script For 3 Females?
So, I need a free script for three girls, no guys. I have already searched google and ask and havent found a thing. So random links to google or other search engines probably wont help. If you have a recommendation, just state it. I am getting desperate at this point. (Links to a script would be appreciated…not needed, though.)
Read More >>
Q&A: HOW CAN I CREATE A “SEARCH ENGINE”?
Feb 3rd

Question by Dr Daud Zareef:
How can i create a “search engine”?
I have wrote a lot coding to my project, and there is nothing left to code anymore, so i just need to think, that how can i get all the world wide web “URL”? that is my answer for this day (27/04/09), i hope some one help me wtih this difficulte question.
Read More >>
W3C VALIDATION – HOW TO STOP IT VALIDATING (JS)SCRIPT?
Feb 2nd
Question by Acestuff:
W3C Validation – How to stop it validating (js)script?
I’m sure there is a tiny piece of code you put in as a comment before scripts to stop them being validated. Cannot for the life of me remember what it nor can I find it using a search engine: search terms are too general.
Using:
http://validator.w3.org/
On xhtml traditional documents.
Anyone know what it is?
Thanks, Colin
Thanks Benjamin but like my question says: there is a comment you can write to stop it validating a section.
I have no idea why it is validating the scripts: one of them is an onclick function which (is kinda long but nevertheless…) has for loops eg
for (var i = 0 ; i < a ; i++)
and it's looking at the < and failing the document
Thanks for the extra effort Benjamin.
I'm pretty sure they exist: I have used them before, unless it was in a dream....
I shall take a look in the info in the links you provided, thanks.
IN IE6 I ENTER A URL WHICH IS NOT VALID AT THE ADDRESS BAR, I GET BROUGHT TO SEARCH.LIVE.NET INSTEAD OF GOOGLE
Jan 31st
Question by NotSweetOnGates:
In IE6 I enter a url which is not valid at the address bar, I get brought to search.live.net instead of google
Google is my default search engine. Works fine with a search at the address bar. My problem is since last night tuesday, whenever I enter(guess) a url in the address bar, instead of doing a search, I am now taken hostage by search.live.com.
I did not install any updates, my anti-spyware is up to date(spybot S&D, ad-aware, firewall, and two on the web searches including Cleaner). Nothing is detected. I have been at this for quite a few years and this is the first time I have Been owned without a trace anywhere to be seen. No hosts files, nothing at the moment. I tried resetting with a few scripts I use for helping ppl out with spyware etc and nothing… It only occurs in the address bar. Wrong address=search.live.com
Help plz?
Read More >>
HOW TO CONNECT PRODUCTS TO A SHOPPING CART WITH A SCRIPT.?
Jan 30th
Question by Steve:
how to connect products to a shopping cart with a script.?
I need to add products to my shopping cart, which I have done btw, then make them appear on fly pages and also create deep links [single products on a page] to appear both when product is clicked AND when a Search engine link is clicked.
I use Joomla! & VirtueMart! now, but shouldn’t the scripts be the same ? What are these scripts, Can you provide me with an example ?
Yes. I do need this extension. Importing is a huge deal.
However, I have stuff in my cart [see steves apparel / cart plz] but they are not showing up in the product / fly pages when I add them. So far this means I need to type the product info in 5 times for EACH product to get it to work and I know Joomla! is not set up that way.
Transversely, I need to also connect the products on the pages that you CAN see, back to the cart. That means [in this case] I need to scrape my own site and add these product descrips & photos to my data base FIRST [w/o it being a .csv file, though I suppose we could figure out how to male them into one, but Why do that ?], then sanitize the unwanted info in it [it is a feed], then hook it all to VirtueMart!.
I really need hands on help, Can you log in and get a few of these things going ?
Please be aware, I am NOT rich. So go simple on me.
You can use our contact button on our site.
thanks!!
Read More >>
QUESTION ABOUT DOMAINS AND SEARCH ENGINE RANKINGS?
Jan 29th
Question by Aspurtaime Dog Sneeze:
Question about domains and search engine rankings?
Question about domains and search engine rankings
I am building a website for a realtor. It seems that if the domain contains the search words (e.g “homes” and “Denver” and “realtor” to denverrealtor.com or denverhomes.com) it would rank higher in search engines than those with those words only as metatags.
Is this true? What is the ideal way to get high on the list?
Read More >>
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 >>