Finally available to the general public.

This commit is contained in:
Jonathan Rosenbaum
2014-12-11 19:56:16 +00:00
commit 7871d51165
4 changed files with 42 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_YBDB = "localhost";
$database_YBDB = "ybdb";
$username_YBDB = "admin";
$password_YBDB = "yblcatx";
$YBDB = mysql_pconnect($hostname_YBDB, $username_YBDB, $password_YBDB) or trigger_error(mysql_error(),E_USER_ERROR);
?>