Hi everybody,
I'm trying to use stored procedures with informix and PHP. So, I know how to run a stored procedure, but that is not the problem. Some stored procedures return values, and I have not been able to obtain the results.
I use it:
$db=ifx_connect($db_database, $db_username, $db_password);
$query="execute procedure formulario( ...... )";
$result = ifx_query($query,$db);
Thanks for any help
Hawkend