0% found this document useful (0 votes)
2 views

php1

The document provides a step-by-step guide for installing and configuring a PHP web server using XAMPP and MySQL. It outlines the process from downloading XAMPP to writing and executing a simple PHP program. The final output displays a welcome message with the user's name and roll number.

Uploaded by

AFIFA SYED
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

php1

The document provides a step-by-step guide for installing and configuring a PHP web server using XAMPP and MySQL. It outlines the process from downloading XAMPP to writing and executing a simple PHP program. The final output displays a welcome message with the user's name and roll number.

Uploaded by

AFIFA SYED
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Name: Afifa Syed Roll no: 220460

Q.1 Install and configure PHP web server, MYSQL.


Step 1: Go to goggle and type xampp download Step 2: Download the xampp application

Step 3: Keep Clicking on next until download tab opens

Step 4: After successful installation , a xampp Step 5: Goto Xampp Control Panel, and start Apache folder will be created in
c:drive Apache server

Step 6: Store all your PHP programs in htdocs folder in xampp folder. C:
/xampp/htdocs/

Step 7: Open any editor and write php Step 8: Now open browser and in URL
programs and save it as filename.php type localhost/filename.php

<html> <body> <?php


echo "Welcome to PHP!<br>";
echo "Afifa Syed - 220460";
?> </body> </html>

You might also like