My website has a section that generates a unique id for every post and then it's sent to the database. The problem is that the ID that is generated totals 16 chars in length and I need the id to be 6 chars only.This is the code that is used to generate the ID:\[code\]$order_id = uniqid(rand(10,1000), false);\[/code\]Is there any way that I could accomplish such a change?