Revert "Remove unused files/docs that belong on wiki"

This reverts commit 64155dc752.
This commit is contained in:
TheManii 2016-04-05 11:43:12 -07:00
parent 64155dc752
commit aa4fc09a32
5 changed files with 203 additions and 0 deletions

7
www/testmysql.php Normal file
View file

@ -0,0 +1,7 @@
<?php
$link = mysql_connect('hostname','dbuser','dbpassword');
if (!$link) {
die('Could not connect to MySQL: ' . mysql_error());
}
echo 'Connection OK'; mysql_close($link);
?>