Hi, Another easy one for you guys. How do I strip a string down. for example I may have \"123423456\" and want to remove all characters except the first 2 leaving me with \"12\". Thanks for this.
Like this .....
$string = substr($sting,0,2);
DaGeek 🙂
http://www.php.net/manual/en/function.substr.php