Strings Php

    $test = "this is a test";
    print substr($test,6); 
    print substr($test,6,2);
?>