Hi,
I'm building an online quote viewing application and I want to be able to hide the file location, so that viewers of a particular quote can't easily figure out the location of another.
The files will be in a /quotes folder, and will be labeled according to their quote number: e.g. 001667.swf, 001674.swf, etc.
What I'm thinking of is something like this:
redirects to a login page. Upon success, user is presented with a link to:
...where q = a string that always corresponds with the actual quote number of the file (e.g. 001667). I'm guessing this can be done with some sort of hash?
Also, I want to obfuscate the HTML source. I don't want people to simply be able to pop into view source for the above page and see "<param value=/quotes/001667.swf", "embed src=/quotes/001667.swf", etc. and try to get at the files directly.
How can I accomplish this?
Thanks,
--RHYNO
I'm building an online quote viewing application and I want to be able to hide the file location, so that viewers of a particular quote can't easily figure out the location of another.
The files will be in a /quotes folder, and will be labeled according to their quote number: e.g. 001667.swf, 001674.swf, etc.
What I'm thinking of is something like this:
Code:
[URL unfurl="true"]http://www.mycompany.com/quote001667[/URL]
Code:
[URL unfurl="true"]http://www.mycompany.com/quote_display.php?q=R8h799cK1[/URL]
Also, I want to obfuscate the HTML source. I don't want people to simply be able to pop into view source for the above page and see "<param value=/quotes/001667.swf", "embed src=/quotes/001667.swf", etc. and try to get at the files directly.
How can I accomplish this?
Thanks,
--RHYNO