mysql connect

This commit is contained in:
overflowerror 2014-07-04 01:51:43 +02:00
parent f55ee4e451
commit 32d8c6ee55

5
backend/mysqlConnect.php Normal file
View file

@ -0,0 +1,5 @@
<?php
$connection = mysql_connect("localhost", "webcli", "password");
mysql_select_db('webcli');
echo mysql_error();
?>