Jump to content

User:Siddharam Chitkoti

From Wikipedia, the free encyclopedia

<html> <head> <title>My First PHP Page</title> </head> <body> <?php echo "Hello World!"; ?> </body> </html> Display: Hello World!



Hello World! If you save this file and place it on PHP enabled server and load it up in your web browser, then you should see "Hello World!" displayed. If not, please check that you followed our example correctly. We used the PHP function echo to write "Hello World!" and we will be talking in greater depth about this PHP function and many others later on in thisHello World! If you save this file and place it on PHP enabled server and load it up in your web browser, then you should see "Hello World!" displayed. If not, please check that you followed our example correctly. We used the PHP function echo to write "Hello World!" and we will be talking in greater depth about this PHP function and many others later on in this tutorial.