I'm having issues using sybase stored procedures in my PHP. I've managed to run the procedures but my main query is how do I get a result from the stored proc. Anybody have any good resources on php and Sybase stored procs??
Thanx
How are you executing them?
It should be this easy: $res = sybase_query( "EXEC my_proc $param1" );
while( $row = sybase_fetch_aray( $res ) ) { echo "Row: $row[col1]"; }