我在商店procuder中传递值时没有得到任何结果我有下面的代码
<?php
$a="26456";
$result3=mysql_query('CALL getItemStock($a)');
$row = mysql_fetch_array($result3);
?>
答案 0 :(得分:2)
试试这个:
$result3=mysql_query('CALL getItemStock('.$a.')');
或
$result3=mysql_query("CALL getItemStock($a)");
<强>更新强>
如果参数定义为字符串,那么您也需要用引号将其括起来。例如:
$a = 'I am String';
$result3=mysql_query("CALL getItemStock('$a')");
但是,如果参数定义为数字,则无需引用。