PHP Study
Monday, 10 September 2012
Comment in PHP
<html>
<body>
<?
php
//This is a comment area
/*
This is
a comment
block area
*/
?>
</body>
</html>
Php Syntax
<?
php
//your php code goes here
?>
Php Syntax With HTML
<html>
<title>
<?
php
echo
"Welcome to my web page"
;
?>
</title>
<body>
</body>
</html>
Newer Posts
Home
Subscribe to:
Comments (Atom)