in reply to Re: Referer check within domain problem
in thread Referer check within domain problem

Thank you for your response. When you have a script which should only accept input from specific pages how do you control this? Is one Good way to do this using .htaccess allow from where that is available?
All advice seriously appreciated!
jg
_____________________________________________________
"The man who grasps principles can successfully select his own methods.
The man who tries methods, ignoring principles, is sure to have trouble.
~ Ralph Waldo Emerson

Replies are listed 'Best First'.
Re: Referer check within domain problem
by Abigail-II (Bishop) on Nov 22, 2002 at 17:21 UTC
    When you have a script which should only accept input from specific pages how do you control this?
    I would never make such a script, because the premisis is flawed. HTTP was created as a stateless protocol, and that's how it works best. Why would a resource care which resource the user consulted before? Why try to funnel the user through a virtual corridor? HTTP wasn't designed for that, and any trick you try will eventually fail. As you found out.

    Don't fight the system, work with it.

    Abigail