PHP is case sensitive:


Yeah it is true that PHP is a case sensitive language. Try out following example:

<html>
<body>
<?php
$num = 67;
print("Variable num is $num<br>");
print("Variable Num is $Num<br>");
?>
</body>
</html>

Output
Variable num is 67
Variable Num is

Means num and Num are two differient variable.


Get More Knoweledge You Join Sharda Technologies

1 comment:

  1. Hi, PHP is partially case-sensitive. In PHP varaibles are case sensitive but classes and function are not.

    ReplyDelete