Hi
Thanks for your time.
I am developing application using PHP. In this for some instace I have added logic such that, for certain area matches then redirect to particular url.
if(//statement) {
redirect to specific URL(e.g. http://www.example.com/testing.php )
}
Above is my basic logic. Here I want to Identify that whether user mannually loaded this URL http://www.example.com/testing.php on browser or it is redirected from webserver and then loaded.
How do I achieve this.
Your suggestions are welcome!!!.
-Pravin.