Hi all,
I'm stuck a bit here...
how do we take the first letter out from a string?
e.g.: $stringA = "Hello"; after taking out the first letter, $stringB = "H"; $stringA = "ello";
tks in advance! (: will
$string = 'Hello'; echo $string{0}; // outputs "H" echo substr($string, 1); // outputs "ello"
!! thanks again, devinemke!! _