Initial commit

This commit is contained in:
gh0stl1ne
2019-10-21 22:53:10 +02:00
committed by GitHub
commit a2b5d7f232
47 changed files with 7331 additions and 0 deletions

12
www/db_cred.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
$serv = 'localhost';
$datb = 'bioserver2';
$user = 'bioserver';
$pass = 'xxxxxxxxxxxxxxxx';
$conn = mysql_connect($serv, $user, $pass)
or die ("connection error");
mysql_select_db($datb, $conn)
or die("database failure");
?>