Results 1 to 10 of 34

Thread: Day 3 - String Operations - Become PHP Expert in 30 days.

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    I got error http://php.flashwebhost.com/sherly/school.php

    Code:
    Fatal error:  Call to undefined function strtolower() in /home/fwhphp/public_html/sherly/school.php on line 5
    Code:
    <?php
    
    $schoolName = 'Little Flower School';
    
    echo strtolower ($schoolName);
    Last edited by sherlyk; 05-10-2014 at 06:00 AM.

  2. #2
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    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
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •