Tag: script
QueryString is a requested pairs of key and value for URL. For example, in the URL http://www.sample.com/index.php?a=1&b=2&c=3 the QueryString is a=1&b=2&c=3. The first delimiter between the requested file name …
If you are familiar with the following screen, you are probably old enough LOL 😉 The following was used by TV Programme to indicate that ‘currently not available’, in …
Python offers a module urllib and its advanced version urllib2 to allow downloading files from given URLs. The following shows three different ways to access the internet data. #!/usr/bin/env …
August 20, 2012
adsense, algorithms, apache server, implementation, php, programming languages, SEO, technical, tricks, web programming
Checing if a visitor being a search bot is easy. You can use one of the globals, the $_SERVER to check if it contains bot-like string. For example, many …
SEO (Search Engine Optimisation) is very popular these days. There are quite a lot of web-based software such as Google analytics, Google webmasters etc. Many companies live on SEO, …