Oracle/PHP [message #108639] |
Wed, 05 May 2004 22:05  |
Leonard Anukam
Messages: 1 Registered: May 2004
|
Junior Member |
|
|
Am new to oracle and PHP, but not new to Oracle. I want to know how to use form action in php to call an oracle stored procedure like
FORM TAG REMOVED action = my_oralce_procedure method=post>.It has to be includes in the html embbed php. Am using Oracle 9i rel 2 and php php-4.3.6-Win32 runing on Windows XP Professional
|
|
|
Re: Oracle/PHP [message #108648 is a reply to message #108639] |
Tue, 15 June 2004 02:29  |
help me please on my pl/s
Messages: 3 Registered: June 2004
|
Junior Member |
|
|
Try it ?
I use this sintax to execute oracle procedure
$sql = "begin EXPORT.CheckUpp('$file',$size,'$datef',:guid,:error); End;";
$stm = $db->prepare($sql);
@OCIBindByName($stm,":error", $error, 20);
@OCIBindByName($stm,":guid", $guid, 32);
OCIExecute($stm);
|
|
|