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.
15 lines
462 B
15 lines
462 B
<?php
|
|
require_once dirname(__FILE__) . "/../../mkt/database.php";
|
|
include_once '../fun_global.php';
|
|
// phpinfo();
|
|
// exit();
|
|
try {
|
|
$connT8 = new PDO("sqlsrv:Server=220.130.203.251;Database=T8masada", "M0225", "IFFBU1E=");
|
|
if ($connT8) {
|
|
$connT8->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
}
|
|
} catch (PDOException $e) {
|
|
// echo "fail";
|
|
// echo $e->getMessage();
|
|
die("ERROR!!!: " . $e->getMessage());
|
|
}
|
|
|