Please Help me
$loOK = false;
//------------------------
$GOrgID = $POST['OrgID'];
if (isset($POST['password']))
{
$EnteredPassword = $_POST['password'];
}
//..............
print("GOrgID =".$GOrgID);
$curs = ocinewcursor($link);
$reqQuery = OCIParse($link ,"BEGIN PKG_CMT_PROCS.GetOrgDetail(:$GOrgID,:AllowBlankPassword,:po_refcur);END;");
print("reqQuery =".$reqQuery);
print("GOrgID =".$GOrgID);
OCIbindByName($reqQuery, ":$GOrgID", $orgid,1);
OCIbindByName($reqQuery, ":AllowBlankPassword", &$detailname,32);
OCIbindByName($reqQuery, ":po_refcur", &$curs, -1, OCI_B_CURSOR);
ociexecute($reqQuery);
Ociexecute($curs);
ocifetch($curs);
$stPasswordNotRequired = ociresult($curs, 'DetailValue'); //'true' or 'false'
$_SESSION['GAllowBlankPassword'] = $stPasswordNotRequired;
ocifreestatement($reqQuery);
ocifreecursor($curs);
Please help me in fixing this, Somehow, Its not taking $GORGID as inparameter, If I give GORGID, its not passing in any value. Please let me know how to run this using $GORGID as passing as in Parameter.
Thanks