Case sensitivity in php to defining variable

$hasib = "all words are small letters";

echo $Hasib;
You will get an error message cause though variables names are same but you have stored value on $hasib;
So what is the different here ?? The major different is $Hasib variable started with capital lertter and $hasib with small letter but those are not same variable although all letters are same in both variable.

So careful when you define variable.

Comments

Popular posts from this blog

WP register_post_type() with custom CMB2 meta box

Git post receive setup at server for git push to the production from local machine