I have a string, of which the first 7 characters need to be stripped, so i am left with the remaining string.
Any ideas on how this is done?
ILMV :thumb:
Printable View
I have a string, of which the first 7 characters need to be stripped, so i am left with the remaining string.
Any ideas on how this is done?
ILMV :thumb:
I would imagine the SubStr function would be of help to you:
http://ca3.php.net/manual/en/function.substr.php
HTH
I have been looking at that before, but i ant to delete those 7 characters from the string? can substr do this?
ILMV
$mystring = substr($mystring, 7);
Thats the one i wanted :D thanks all guys