Quote Originally Posted by sherlyk View Post
I got error http://php.flashwebhost.com/sherly/school.php

Code:
Fatal error:  Call to undefined function strlower() in /home/fwhphp/public_html/sherly/school.php on line 5
Code:
<?php

$schoolName = 'Little Flower School';

echo strlower ($schoolName);
function name is strtolower(), in the code to is missing.

find

Code:
strlower
Replace With

Code:
strtolower