I am capturing the following variables from the Browser

USER ID: REMIS
PASSWORD:
MODIFIED PROJECT/INSTALL CODE:

We are using Oracle Web Application Server and I wanted to send these variablles to the UNIX machine.
Now I am connecting to the oracle successfully with out any problem the following code i am using now

HTP.print('frmLOV = open("/cgi-bin/run_sql?userid=" +');
HTP.print(' escape( document.forms[0].P_USERID.value + "/" +');
HTP.print(' document.forms[0].P_PASSWORD.value + ');
HTP.print(' "@" + sidDNS) + ');
HTP.print(' "&sqlproc=" + proc ');


Proc: is the procedure name which I am passing.

Now I wanted to pass the two more variables and these variables are going to change the project id.

Thanks in advance.