Search code examples
phpsessionletter

How do I make first letter big in php


when I echo a name in $_session['name']; it says "h" rnoob but the first letter is little, and I want makes it so the first letter is big like "H" rnoob??


Solution

  • You can use ucfirst function of php as:

    ucfirst($_session['name'])
    

    and you can check different functions for respective from PHP Manual