This is really wrong. If you do, you will only get llo. To get everything after the first character .... do the following:
<?php echo substr('hello', 1); // Output ello echo '<br />'; echo substr('hello', 2); // Output llo ?>
I just wanted to fix it.
Edit: Bah, ignore me. I thought you were talking in PHP. In any case, you can do it in Mysql..or you can just get it in PHP, as I wrote above.
source share