我在这里调用了存储过程,该存储过程运行良好,但是我想在输入框中提供参数,如何从输入框中获取该参数
<?php
$con = new PDO("mysql:host=localhost;dbname=acc_project_inv",'root','');
$sql = "CALL calcPro('2018-03-31')";
$result = $con->prepare($sql);
$result->setFetchMode(PDO::FETCH_ASSOC);
$result->execute();
if ($result) {
echo "Calculated";
}else{
echo "Report Development Team";
}
?>
答案 0 :(得分:1)
这是一种可能的解决方案:
r