ok install instructions are:
- Double click on the downloaded file and just follow the instructions. Everything is automatic. The WampServer package is delivered whith the latest releases of Apache, MySQL and PHP.
- Once WampServer is installed, you can add other releases by downloading them on this website. They will then appear in the WampServer menu and you will be able to switch releases with a simple click.
- Each release of Apache, MySQL and PHP has its own settings and its own files (datas for MySQL).
- The “www” directory will be automatically created (usually c:\wamp\www)
- Create a subdirectory in “www” and put your PHP files inside.
- Click on the “localhost” link in the WampSever menu or open your internet browser and go to the URL : http://localhost
One thing worth explaining; wamp has its own index.php which is connected to its GUI which you will use when
fort instance clicking on a phpMyAdmin link which is in the menu. Now all web sites must have an index file either index.jsp,index.php etc but you can not put your web site index file directly into the wamp WWW folder or it will replace wamps own index.php file.That is why it tells you to create a directory say called myweb inside the WWW directory. You then build your web site inside myweb, and you put your first file index.html, index.php inside myweb directory; it will then not clash with wamp own index file. So to see your web site if you created a directory called "myweb" in WWW of wamp to see your web on your own your own PC put
http://localhost/myweb in the address bar of your web browser, it will automatically load the index file you put in it. After that put in more web files, say you create a "aboutus.html" in myweb then see it at:
http://localhost/myweb/aboutus.html
To create navigation links you just put anchor links into your index file. Hope this makes sense.