Web Technologies
Introduction to PHP
Smt.M.Jeevana Sujitha
Assistant Professor
Department of Computer Science and Engineering
SRKR Engineering College, Bhimavaram, A.P. - 534204
OBJECTIVES
The Objectives of this lecture are
Introduction to PHP
What is PHP?
Introduction to PHP
What is a PHP File?
Introduction to PHP
What can PHP DO?
Introduction to PHP
Why PHP?
Introduction to PHP
PHP Syntax:
<?php Php code
?>
Introduction to PHP
Example:
<html>
<body>
<h1>My first PHP page</h1>
<?php
echo "Hello World!";
?>
</body>
</html>
Introduction to PHP
Comments in PHP:
//This is single line comment #This is also a single line comment
/* This is multi line comment */
Introduction to PHP
PHP Case Sensitivity:
are not case-sensitive.
<html>
<body>
<?php
ECHO "Hello World!<br>"; echo "Hello World!<br>"; EcHo "Hello World!<br>";
?>
</body>
</html>
THANK YOU