How do I trim the very first blank space?
Lets say I have a string like this
$test = " Hello how are you?"
How would I make it looks like this
$test = "Hello How are you?"
trim(" ", $test); (this seems not to work)
Course the varible is comming from a form, so thats why I need the first space trimmed, if it was just a hard coded virable I would do it manually.