I am trying to get a form's action attribute in server side php. I tried getting it through $_POST['action'] and $_REQUEST['action'] but this value is not set. Please help me.
The action
attribute is not sent via a form submission.
Check $_SERVER['REQUEST_METHOD']
instead.