sql - Getting output parameter from stored procedure to php -
hello far end of sql based knowledge, seeking help. can see stored procedure. want testpkid php. , php sending data produced on html send data database procedure use.
$personname=$_get['personname']; $testxml=$_get['testxml']; $testdate=$_get['testdate']; include('dbconnect.php'); $proc = "{call p_set_test(?,?,?,?,?,?,?,?)}"; $params = array($testdate,0,$personname,$testxml,'',101,10,0); $result = sqlsrv_query( $conn, $proc, $params); // how testpkid php parametr in php?
if isn't understandable try explain more thank you
$personname=$_get['personname']; $testxml=$_get['testxml']; $testdate=$_get['testdate']; include('dbconnect.php'); $proc = "{call p_set_test(?,?,?,?,?,?,?,?)}"; $params = array($testdate,0,$personname,$testxml,'',101,10,0); $result = sqlsrv_query( $conn, $proc, $params);
i variable php , put html simple , answered
Comments
Post a Comment