Hello Friends
I've Registration Code such as
REG001
REG002
REG003
Now i want to break the Registration Code into two starting from REG.
So it will be like:
$data[0] will be REG
$data[1] will be 001
I tried using explode("REG",$string) but the $data[0] comes in blank.
Neither will str_split help, what if the no is REG00001, so i cant use str_split unless im sure it will be constant.
Let me know if you have any ideas.
Thanks & Regards