"yourpassword", "Uid"=>"yourusername", "PWD"=>"yourpassword"); //Establishes the connection $conn = sqlsrv_connect($serverName, $connectionOptions); //Select Query $tsql = "SELECT [CompanyName] FROM SalesLT.Customer"; //Executes the query $getProducts = sqlsrv_query($conn, $tsql); //Error handling if ($getProducts == FALSE) die(FormatErrors(sqlsrv_errors())); $productCount = 0; $ctr = 0; ?>

First 10 results are :

9) break; $ctr++; echo($row['CompanyName']); echo("
"); $productCount++; } sqlsrv_free_stmt($getProducts); $tsql = "INSERT SalesLT.Product (Name, ProductNumber, StandardCost, ListPrice, SellStartDate) OUTPUT INSERTED.ProductID VALUES ('SQL New 1', 'SQL New 2', 0, 0, getdate())"; //Insert query $insertReview = sqlsrv_query($conn, $tsql); if($insertReview == FALSE) die(FormatErrors( sqlsrv_errors())); ?>

Product Key inserted is :

"; foreach ( $errors as $error ) { echo "SQLSTATE: ".$error['SQLSTATE']."
"; echo "Code: ".$error['code']."
"; echo "Message: ".$error['message']."
"; } } ?>