new ClassName(arguments);
new PDO($dsn, $username, $password);
mysql:host = host_address;
dbname = database_name;
$dsn = "mysql:host=localhost;dbname=my_guitar_shop1";
$username = "mgs_user";
$password = "pa55word";
$db = new PDO($dsn, $username, $password); // creates PDO object
$dsn = "mysql:host=bscacad3.buffalostate.edu;dbname=your-bsc-userid";
$username = "your-bsc-userid";
$password = "your-Banner-id";
$db = new PDO($dsn, $username, $password); // creates PDO object
new keyword, followed by the name of the class, followed by a set of parentheses. Within the parentheses, you code the arguments that are required by the class, separating multiple arguments with commas.