Showing posts with label case sensitive. Show all posts
Showing posts with label case sensitive. Show all posts

Thursday 10 April 2014

PHP is case sensitive

PHP is case sensitive

Yeah it is true that PHP is a case sensitive language. Try out following example:
<html>
<body>
<?
$capital = 67;
print("Variable capital is $capital<br>");
print("Variable CaPiTaL is $CaPiTaL<br>");
?>
</body>
</html>
This will produce following result:
Variable capital is 67
Variable CaPiTaL is

Comment

Comment Box is loading comments...