I would like to generate a URL which will have a unique code tail at the and only will be used 3 times. After accessing 3 times from the link. the url will expire. How can I do this? Basically I think I need to create a database and map the permission for the url and have acountdown number? is there any better way of doing this? An example of this is in facebook you can just copy and send a link to the people to see your pictures without going online or being your friends. ?
1条回答 默认 最新
dongleman4760 2011-09-28 07:33关注You've already thought of your own solution! There is no easier way.
Lets have a look at what you need:
- An url referring to a specific page (or an image in your case)
- A limit of times your url can be visited
- A count of the amount of visits
All 3 requirements seem to need a database. You can use an alternative database, such as local xml files but that would be way more work than using a mysql database for instance.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报