How to execute SQL statements after PHP connection to SQL serve

Source: Internet
Author: User
Tags stmt

<?php
Header ("Content-type:text/html;charset=utf-8");
//
$conInfo =array (' Database ' = ' dbname ', ' UID ' = ' user ', ' PWD ' = ' password ');

$conn =sqlsrv_connect (' servername/ip ', $conInfo);

$sql = "SELECT * from Product where productno=10001";

$params = Array ();

$options = Array ("scrollable" = Sqlsrv_cursor_keyset);

$stmt = sqlsrv_query ($conn, $sql, $params, $options);

$row _count = sqlsrv_num_rows ($stmt);

/* Determine if the connection is successful or not: */

if (! $conn) echo "faild! connection error, user name password is not correct";
else echo "ok! can be connected";

Determine the number of rows in the query result
if ($row _count = = = False)
echo "Error in Retrieveing row count.";
Else
echo $row _count;

?>

How to execute SQL statements after PHP connection to SQL serve

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.