Hi, I'm working on an application that uses mod_plsql with Oracle 10G to generate web pages via PL/SQL stored procedures called directly from the web browser. I'm looking for a way to only accept parameters via POST requests, and not GET requests.
Ie, in PHP I would only want the value of $_POST['parameter_name'] and not $_GET['parameter_name']. I haven't been able to find a way to achieve this in Pl/SQL, since the parameters are specified in the procedure definition and without a request type.
Is there any way to achieve this with PL/SQL?
Thank you.