preload preload preload preload

Google Maps API

What is the Google Maps API? The Google Maps API lets you embed Google Maps in your own web pages with JavaScript. The API provides a number of utilities for manipulating maps (just like on the shahidz.com/map.php web page) and adding content to the map through a variety of services, allowing you to create robust maps applications on your website. For enabling Google Map in your site you need a key. You can generate the key from this link : ...
2

Favicon icon in the address bar

To show icon on the address bar use html tag Syntax <link rel="shortcut icon" href="URL" type="image/ico" /> Example <html> <title> Icon in address bar </title> <link rel="shortcut icon" href="image/favicon.ico" type="image/ico" /> </html> ...
3

Installing PHP and PHP modules in Linux

In Redhat and Fedora you can use the command 'yum' yum -y install php yum -y install php-devel yum -y install php-gd yum -y install php-imap yum -y install php-ldap yum -y install php-mysql yum -y install php-odbc yum -y install php-pear yum -y install php-xml yum -y install php-xmlrpc yum -y install curl yum -y install ...
1