How to call MSSQL stored procedure in PHP_PHP tutorial

WBOY
Release: 2016-07-21 16:05:35
Original
782 people have browsed it

//Execute stored procedure
for($i=0;$i<$ses_basket_items;$i++)
{
$query="exec add_ddxx
@p_account="$session_account",
@p_name="$name[$i]",
@p_num="$num[$i]",
@p_marketprice="$marketprice[$i]",
@p_memberprice=" $memberprice[$i]",
@p_priceoftax="$notaxprice[$i]",
@p_priceoflast="$lastprice[$i]",
@p_sumprice="$price[$i ]",
@p_buy_date="$date",
@p_flag="$p_flag"";
$result=mssql_query($query,$connection) or die("Stored procedure execution error, unable to Execute the SQL: $query");
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/315688.htmlTechArticle//Execute the stored procedure for($i=0;$i$ses_basket_items;$i++) { $query= exec add_ddxx @p_account=$session_account, @p_name=$name[$i], @p_num=$num[$i], @p_marketprice=$marketprice[$i...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template