what command can i use to delete the last 3 characters from a string, any suggestions apreciated.
$somestring=substr($somestring,0,(strlen($somestring)-3))
Hope this helps Darren
$somestring = substr($somestring, 0, -3);