Removed unnecessary lines

This commit is contained in:
Pijus Kamandulis 2016-06-09 12:13:22 +03:00
parent 8dfcd52e7e
commit b512c2c943
1 changed files with 1 additions and 10 deletions

View File

@ -6,13 +6,4 @@ $SQL_User = "paste";
$SQL_Password = "ckQgRJRhib74XMgVpzmn38uj1MrCcNnK7L9bc7zu";
//========CONNECTION========//
$conn = new PDO('mysql:host='.$SQL_Host.';dbname='.$SQL_Database.';charset=utf8mb4', $SQL_User, $SQL_Password);
/*
//==========INSERT==========//
$stmt = $dbh->prepare("INSERT INTO Customers (CustomerName,Address,City)
VALUES (:nam, :add, :cit)");
$stmt->bindParam(':nam', $txtNam);
$stmt->bindParam(':add', $txtAdd);
$stmt->bindParam(':cit', $txtCit);
$stmt->execute();
*/
?>