Reputation: 20444
In the construction of our booking system client can view their bookings online. At the moment the URL of their page is created as a sequential number. So /booking1
, /booking2
, /booking3
etc...
I'd rather have unique name a bit like the JSFiddle way of doing it. A series of letters and numbers.
Is that possible?
Upvotes: 0
Views: 440
Reputation: 1372
Would uniqid be good enough for what you need?
http://php.net/manual/en/function.uniqid.php
Upvotes: 3