Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hskin_sqlb.php 546B

123456789101112131415161718
  1. <?php
  2. $serverName = "mssql-147629-0.cloudclusters.net,12711";
  3. $connectionInfo = array( "Database"=>"Huang_PH_SYS", "UID"=>"B70340", "PWD"=>"Lee0911274990", "CharacterSet" => "UTF-8");
  4. $conn = sqlsrv_connect( $serverName, $connectionInfo);
  5. $connectionInfo1 = array( "Database"=>"HSKIN-ERP-SYS", "UID"=>"B70340", "PWD"=>"Lee0911274990", "CharacterSet" => "UTF-8");
  6. $conn1 = sqlsrv_connect( $serverName, $connectionInfo1);
  7. if( $conn ) {
  8. }
  9. else{
  10. echo "Connection could not be established.<br />";
  11. die( print_r( sqlsrv_errors(), true));
  12. }
  13. ?>