Skip to content

Instantly share code, notes, and snippets.

@putheakhem
Created December 3, 2019 09:28
Show Gist options
  • Save putheakhem/f75a29388a83ba95f0b959d1f7a54318 to your computer and use it in GitHub Desktop.
Save putheakhem/f75a29388a83ba95f0b959d1f7a54318 to your computer and use it in GitHub Desktop.
<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDBPDO";
try {
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
// set the PDO error mode to exception
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql = "INSERT INTO MyGuests (firstname, lastname, email)
VALUES ('John', 'Doe', 'john@example.com')";
// use exec() because no results are returned
$conn->exec($sql);
echo "New record created successfully";
}
catch(PDOException $e)
{
echo $sql . "<br>" . $e->getMessage();
}
$conn = null;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment