Iam not able to get familiar with XAMPP interface on Windows7 (Only prior experiencxe is with HTML,C,C++).
How to proceed to begin development work in PHP and MySQL and test developed contents using Apache Server.
Please help to understand its working flow.
Thanks in Advance.
Iam not able to get familiar with XAMPP interface on Windows7 (Only prior experiencxe
Share
First, find a good PHP book or tutorial to learn PHP. There are plenty out there, just Google or visit the PHP homepage.
As you follow the book or tutorial, save your .php files in the XAMPP
htdocsfolder. This will let you view your results using the XAMPP web server. For example, if you write a PHP script calledtest.phpand save it in thehtdocsfolder, you can access it on your local XAMPP server via http://localhost/test.php.XAMPP includes phpMyAdmin, which lets you manage the included MySQL database. You can learn more about phpMyAdmin here.
Be sure to read the XAMPP documentation so that you know how to start up Apache and MySQL and access phpMyAdmin.