Tag: website
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 …
Sometimes if you want to extract some records from a table you can use the following SQL syntax select * from table order by rand() limit 10 Different SQL …
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, …