PHP is one of the most used language in website developement. Five important characteristics of PHP.
- Simplicity
- Efficiency
- Security
- Flexibility
- Familiarity
Now we are checking Hello World program using PHP.
<html>
<head>
<title>Coding Request</title>
</head>
<body>
<?php echo "Hello World!"?>
</body>
</html>
Coding View in Notepad++
Noteped++ Download link here https://notepad-plus-plus.org/downloads/Image 1
Some coding meaning here
- <title>.......</title> - Your title place
- <?php echo"..........";?> - Your text place
PHP file save path in xampp server
C:\xampp\htdocs (This PC \ Local Disk C / xampp / htdocs )
Image 2
Please start this actions in XAMPP control panel before running file.
- Apache
- MySQL
XAMPP control panel Download link here https://www.apachefriends.org/download.html
Image 3
Result view in browser
Image 4
localhost/Hello.php this is our programme file path. You need more information check the practical video.