Hey everyone! I've created a PHP script which spits out the contents of a SWF file (in an attempt to protect my SWF since there's no proper code protection for SWF yet - yes I know there are workarounds, but just bear with me for the moment). So instead of embedding the SWF I embed the PHP in my HTML document. Here's a snip of the embed code:
<param name=movie value="v1.php">
...
<embed src="v1.php" ...
Now, I'm wondering whether this call from the HTML file will make the HTML file count as a referrer, because I'm looking for a way to stop the user running v1.php directly via their browser. I want it to only run when embedded via my HTML doc if possible.
Any help greatly appreciated.
Cheers
Jesse