01 Hello Program PHP- record
sava--hello.php
program:-
<!DOCTYPEhtml>
<html>
<body>
<h1>My Frist PHP Page</h1>
<?php
$string="Hello World<br>";
echo $string;
print $string;
printf("%s",$string);
?>
</body>
</html>
output:-
sava--hello.php
program:-
<!DOCTYPEhtml>
<html>
<body>
<h1>My Frist PHP Page</h1>
<?php
$string="Hello World<br>";
echo $string;
print $string;
printf("%s",$string);
?>
</body>
</html>
output:-
Comments
Post a Comment