NextIndex

Programs in PHP

1. Program to display Text messages.
<?php

	print("Hello to all");
	
	echo("<br>PHP is Server side Scripting Language.");
	
?>
Output :

Hello to all
PHP is Server side Scripting Language.