File "testmysql.php"

Full Path: /home/analogde/www/RaspBerry/Dev/toto/testmysql.php
File size: 184 bytes
MIME-type: text/x-php
Charset: utf-8

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