/* The strtolower() function converts a string to lowercase.
Convert all characters to lowercase.*/<?phpecho strtolower("Hello WORLD.");
?>// Output: hello world.
/* There is a function in php wich convert all paragraph or
string to lowercase*/<?phpecho strtolower("Hey Samy, HAVE YOU CHECK THE LATEST MOVIE.");
// Output: hey samy, have you check the latest movie.?>