I am trying to use a PHP variable instead of using Oracle Variable. Now the code is as follows:
declare
V_EXAMCAT_MAP_ID varchar2(16);
begin
PRC_BUILD_PK ('', 'SEQ_NM_APPLICATION', 'T', '1', V_EXAMCAT_MAP_ID,'Y');
end;
/
Now in the above code, V_EXAMCAT_MAP_ID is returning T180801000010 I want to use PHP variable instead of V_EXAMCAT_MAP_ID to get the result in a PHP variable of the procedure.
Is it possible? if possible please help me