I've been using Johnboy URL shortner and I noticed it doesn't check and see if the URL that it generates exists in the database. How could I ensure that the URL is unique>
|
show 3 more comments
feedback
|
|
Simply adding | |||||||||
feedback
|
|
Create a unique index/constraint for the long or the short url or both. When the script tries to insert another record with the same values the INSERT statement will fail with a specific error code which you can test for and handle appropriately.
| |||
|
feedback
|
|
Seems like johnboy's script is full of vulnerabilities...but here ya go! (modified index.php script where it calculates the new short url)
| |||||||
feedback
|
|
The DB table looks like this:
The primary key is a auto-incremented integer that is not used anywhere across the app. You can just get rid of it and use
I'd go for #3. However, considering that it uses | |||
|
feedback
|
|
you could use foreign key constraints to ensure unique urls at the database level. Then, in the php, check that the query inserted a row - if so, then you know a unique url has been inserted, if not, then give the user or script a chance to try it again with a new string. | |||
|
feedback
|
INSERTquery. I'd use a better script, though, considering that it doesn't even check if the shortened URL is already in-use either. – ceejayoz Apr 5 '11 at 16:18