0
3.7kviews
Write short note on Building Web application using PHP.
written 5.2 years ago by | • modified 5.2 years ago |
Subject: Internet Programming
Topic: Server Side Programming: PHP
Difficulty: Low
ADD COMMENT
EDIT
1 Answer
written 5.2 years ago by | • modified 5.2 years ago |
Subject: Internet Programming
Topic: Server Side Programming: PHP
Difficulty: Low
written 5.2 years ago by |
The flowchart diagram shown below illustrates the basic architecture of a PHP Web application and how the server handles the requests.
<html> <head> <title>Hello World</title> <body> <?php echo "Hello, World!<br><br>"; for ($x = 0; $x <= 5; $x++) { echo "The number is: $x <br>"; } ?> </body> </html>