![]() |
Generate limit UUID code - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Generate limit UUID code (/showthread.php?tid=69348) |
Generate limit UUID code - omid_student - 11-08-2017 Hello guys I need generate limit UUID example generate code about 10 length in mysql And it is very important that code be unique after limit code Thanks RE: Generate limit UUID code - InsiteFX - 11-08-2017 Here is what I use to generate them, place this into any of your helper files. PHP Code: // ----------------------------------------------------------------------- You can also modify it to include a namespace if you want. RE: Generate limit UUID code - omid_student - 11-08-2017 (11-08-2017, 06:27 AM)InsiteFX Wrote: Here is what I use to generate them, place this into any of your helper files. I try it Thanks |