MySQL Forums
Forum List  »  Stored Procedures

Re: PHP mysql stored procedure execution problem
Posted by: swad aman
Date: September 15, 2005 01:06AM

i am in the problem to handle the stored procedure from php5 and mysql 5.0.12
please help me .....

i wrote these


<?php
$link = mysqli_connect('localhost', 'root', '1234',);
if (!$link) { die('Could not connect: ' . mysql_error()); }
echo 'Connected successfully';
$qry=mysqli_query("call helloprocedure()") or die(mysql_error());
$rs=mysqli_fetch_object($qry);
print_r($rs);
?>

but not working ??????

plase help me

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: PHP mysql stored procedure execution problem
3267
September 15, 2005 01:06AM


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.