PHP Hello Video Tutorial for Beginners


 

PHP Hello Video Tutorial for Beginners

This PHP Hello video tutorial teaches you how to create your first 'Hello World' example in PHP and then run on WAMP server. In most programming language developer develops 'Hello World' tutorial as a first application. Its very easy application which teaches the basic of programming language to the programmer.

This PHP Hello video tutorial teaches you how to create your first 'Hello World' example in PHP and then run on WAMP server. In most programming language developer develops 'Hello World' tutorial as a first application. Its very easy application which teaches the basic of programming language to the programmer.

Learn PHP Hello Video Tutorial - for beginners

This PHP Hello video tutorial teaches you how to create your first "Hello World" example in PHP and then run on WAMP server. In most programming language developer develops "Hello World" tutorial as a first application. Its very easy application which teaches the basic of programming language to the programmer.

In this tutorial I am assuming that you have already installed WAMP server and it is running on your computer. By default WAMP is installed in c:\wamp directory. In this directory wamp installs all the files required to run the server.

The WAMP server is very easy to use tool for testing the Hello World application in PHP. This is very basic tutorial which displays "Hello World" message on browser when called from browser.

Here is the code of the "Hello World" php application for beginners.

<?php
echo "Hello World!";
?>

You can use any of the text editor to create the file and save into "c:\wamp\www\tutorial" directory. File name should be "helloworld.php" without quotes. To execute the program type http://localhost/tutorial/helloworld.php in your browser.

Here the video of the "PHP Hello Video Tutorial - for beginners" tutorial.

Ads