An exception was thrown in my application, but HTTP_REFERER was null, which seems strange in this case. I am wondering if you can answer a quick question:
So, I have this form:
<form action="http://mysite.com/somewhere/else">
<input type="submit" />
</form>
When someone submits a form, I expect the parameter to $_SERVER['HTTP_REFERER']be set to a value /index.html. It's true?
source
share