In my database I have a table which has an Id
column.
I am using this id
as a link variable. For example test.php?id=1
, deneme.php?id=2
.
I want the numbers to be 5 digits so that one can not simply change the id
value and go to the page.
How can I do that? Is thare an algoritm that produces 5 digit numbers?
For example I will give 1 and it produces 34212 and I will give this number as test.php?id=34212
and get its equivalent that is 1 and will fetch the page.