MySQL Forums
Forum List  »  PHP

stored procedure out parameter problem in php page using mysql
Posted by: Majid Khan
Date: February 28, 2008 11:32PM

After the successfully connection with database
following is code

Code: ( php )
$TM = mysql_query("Call Accounts_GetAllData(@data)");
$TM2 = mysql_query('SELECT @data');
$TM_X = mysql_fetch_array($TM);
$TM_W = mysql_fetch_array($TM2);
print_r(TM_W);
I am not able to get out parameter(data). please response asap.

Thanks

Options: ReplyQuote


Subject
Written By
Posted
stored procedure out parameter problem in php page using mysql
February 28, 2008 11:32PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.