A simple and easy example on PHP:-
example.php :-
<!DOCTYPE html>
<html>
<body align="center">
<h1>My First Post On PHP</h1>
<?php
echo "PHP Programming Language";
?>
</body>
</html>
Screenshot:-
example.php :-
<!DOCTYPE html>
<html>
<body align="center">
<h1>My First Post On PHP</h1>
<?php
echo "PHP Programming Language";
?>
</body>
</html>
Screenshot:-
A PHP scripts starts with <?php & ends with ?>. "Echo" is the statement used in the above example to print the line.
No comments:
Post a Comment