TecTao Posted July 30, 2009 Share Posted July 30, 2009 I want to create part of an ID number that will have the first 4 characters of an administrators last name. I will combine that new string with a random generated set up numbers. For example an administrator with the last name smith creates a new entry the new member will have an ID number smit-4kjfsl46. The smit being the first for characters of the last name. I've read over the substr_replace or trim function but can't seem to find anything that will remove all characters except for the first for. Any help or idea. Thanks in advance. Mike Quote Link to comment https://forums.phpfreaks.com/topic/168191-solved-remove-characters-from-string/ Share on other sites More sharing options...
Daniel0 Posted July 30, 2009 Share Posted July 30, 2009 You can get it using substr($name, 0, 4); substr Quote Link to comment https://forums.phpfreaks.com/topic/168191-solved-remove-characters-from-string/#findComment-887059 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.