Re: [PHP] Stored Procedured

2001-04-17 Thread phpman
i'm not sure what you're asking. maybe this? $result = odbc_exec($conn, "execute" . odbc_exec($conn,"execute sp_list $quantity") . $last_name); // I don't know much about odbc api, but that's how you execute a func in a func "Juan Andres" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]"

[PHP] Stored Procedured

2001-04-17 Thread Juan Andres
Hi i send one question how i can execute two or more stored procedured? example $first_procedure = odbc_exec($conn,"execute sp_list $quantity"); $second_procedure = odbc_exec($conn,"execute sp_list_names $last_name"); how i use values of $second_procedure _