How can I remove the first 4 characters of a string using PHP?
use php's built in substr function...
$result = substr("This World", 4); //will return " World"