Getting a simple message displayed on the screen is easy using the php echo statement. Simply put the following script in the php page and save.
<?php
echo "I am php teacher";
?>
The script will show the message “I am php teacher” on your computer screen.