<!DOCTYPE html>
<html>
<body>
<h5 align="right">http://csprograms4u.blogspot.in</h5>
<h2 style="color:red;" align="center" >Welcome to PHP Tutorials</h2>
<h3 style="color:blue;" align="left">Program Number 4:-Program to check case senstivity of $color code</h3>
<?php
$color = "BLUE";
//$color is only executable
echo "Color of my Pen is " . $color . "<br>";
echo "Color of Shirt is " . $COLOR . "<br>";
echo "Color of my Bike is " . $coLOR . "<br>";
?>
</body>
</html>
No comments:
Post a Comment
Note: only a member of this blog may post a comment.