Skip to content

Instantly share code, notes, and snippets.

View Matthew-Learnosity's full-sized avatar

Matthew-Learnosity

View GitHub Profile
@Matthew-Learnosity
Matthew-Learnosity / test.php
Created December 23, 2015 04:47
Simple PHP script to query AWS RDS
#!/usr/bin/php
<?php
echo '***** Fail over test starting up', PHP_EOL;
ini_set("default_socket_timeout", 2);
$dbh = new PDO(
'mysql:host=hostname',
'username',
'password'
);