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??
You can use ucfirst
function of php as:
ucfirst($_session['name'])
and you can check different functions for respective from PHP Manual