$tsql = "INSERT INTO dbo.order(order_client,
order_contact,
order_vendor,
order_iteminfo,
order_ourcost,
order_ourshipping,
order_pricequote,
order_shipquote,
order_shipinfo,
order_requestor)
VALUES (?,?,?,?,?,?,?,?,?,?)";
$params = array(&$_POST['order_client'],
&$_POST['order_contact'],
&$_POST['order_vendor'],
&$_POST['order_iteminfo'],
&$_POST['order_ourcost'],
&$_POST['order_ourshipping'],
&$_POST['order_pricequote'],
&$_POST['order_shipquote'],
&$_POST['order_shipinfo'],
&$_POST['order_requestor']);
>[Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Incorrect syntax near the keyword 'order'.
>near the keyword 'order'.
>'order'.
Thanks that helps.