The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead
Bonjour
j'ai un problème
Citation:
management\connect.inc||6||mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead
Fichier connect.inc
Code:
1 2 3 4 5 6 7 8 9
| <?php
function doconnect()
{
global $dbhost, $dbuser, $dbpassword, $dbname;
$errormessage = "<center><h2>Sorry.</h2><br />Service unavailable, please contact to the administrator.</center>";
$db =@mysql_connect("$dbhost", "$dbuser", "$dbpassword") or die ($errormessage);
@mysql_select_db("$dbname",$db) or die ($errormessage);
}
?> |