Skip to content

Instantly share code, notes, and snippets.

View waelalameen's full-sized avatar
🎯
Focusing

Wael Alameen waelalameen

🎯
Focusing
  • Thoughtworks Romania S.L.R.
  • 13:02 (UTC +03:00)
View GitHub Profile
@bradtraversy
bradtraversy / pdocrash.php
Last active June 5, 2024 19:08
PDO & Prepared Statements Snippets
<?php
$host = 'localhost';
$user = 'root';
$password = '123456';
$dbname = 'pdoposts';
// Set DSN
$dsn = 'mysql:host='. $host .';dbname='. $dbname;
// Create a PDO instance