Php Lesson 2 - Create New Project
https://realitymug.blogspot.com/2013/12/php-lesson-1-create-new-project.html
In WAMP
- Goto your drive where you install WAMP server.
- Open directory wamp/www
- Create New Folder and name it with our project , example : testProject
- Create index.php or index.html file and type any thing in php/html , index is default file which runs when you open your project from local host server
- Install any IDE for development ,My recommendation is Netbeans or PhpStorm
- goto your browser and type "localhost/projectname" . Example : localhost/testProject
- it will open your index.php or index.html file
In XAMPP
- Goto your drive where you install XAMPP server.
- Open xampp/htdocs
- Create New Folder and name it with our project , example : testProject
- Create index.php or index.html file and type any thing in php/html , index is default file which runs when you open your project from local host server
- Install any IDE for development ,My recommendation is Netbeans or PhpStorm
- goto your browser and type "localhost/projectname" . Example : localhost/testProject
- it will open your index.php or index.html file
