I am trying to execute a Stored Procedure...
my SP is correct... but I always get the Die message; WRONG... My connection also works..
Here is my code...
$strQuery = "sp_update_product '".$ProdID."','".$txtProductName."','".$SupplierID."','".$ProdCategoryId."','".$txtQuantityPerUnit."','".$txtUnitprice."','".$txtUnitsinstock."','".$txtUnitsonorder."','".$txtReorderlevel."'";
echo $strQuery."<br>";
mssql_query($strQuery) or die ("WRONG");
What's wrong ???