mirror of
https://github.com/sigmasternchen/webcli
synced 2025-03-15 22:28:54 +00:00
5 lines
123 B
PHP
5 lines
123 B
PHP
<?php
|
|
$connection = mysql_connect("localhost", "webcli", "password");
|
|
mysql_select_db('webcli');
|
|
echo mysql_error();
|
|
?>
|