Probleme connection avec mysQl

Fermé
alan44650 - 22 mars 2016 à 15:28
jordane45 Messages postés 38178 Date d'inscription mercredi 22 octobre 2003 Statut Modérateur Dernière intervention 16 mai 2024 - 22 mars 2016 à 19:46
Bonjour,
Voila mes problèmes avec ma connexion de mysql
Je ne comprend pas tout car il y aurais des problèmes au niveaux de mes lignes de code mais je ne trouves pas




Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 7

Warning: mysql_connect(): Unknown MySQL server host 'mysqlhostingerfr' (-2) in /home/u492365117/public_html/enregister.php on line 7

Deprecated: mysql_select_db(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 9

Warning: mysql_select_db(): Access denied for user 'u492365117'@'10.2.1.3' (using password: NO) in /home/u492365117/public_html/enregister.php on line 9

Warning: mysql_select_db(): A link to the server could not be established in /home/u492365117/public_html/enregister.php on line 9

Deprecated: mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 11

Warning: mysql_real_escape_string(): Access denied for user 'u492365117'@'10.2.1.3' (using password: NO) in /home/u492365117/public_html/enregister.php on line 11

Warning: mysql_real_escape_string(): A link to the server could not be established in /home/u492365117/public_html/enregister.php on line 11

Deprecated: mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 12

Warning: mysql_real_escape_string(): Access denied for user 'u492365117'@'10.2.1.3' (using password: NO) in /home/u492365117/public_html/enregister.php on line 12

Warning: mysql_real_escape_string(): A link to the server could not be established in /home/u492365117/public_html/enregister.php on line 12

Deprecated: mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 13

Warning: mysql_real_escape_string(): Access denied for user 'u492365117'@'10.2.1.3' (using password: NO) in /home/u492365117/public_html/enregister.php on line 13

Warning: mysql_real_escape_string(): A link to the server could not be established in /home/u492365117/public_html/enregister.php on line 13

Deprecated: mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 14

Warning: mysql_real_escape_string(): Access denied for user 'u492365117'@'10.2.1.3' (using password: NO) in /home/u492365117/public_html/enregister.php on line 14

Warning: mysql_real_escape_string(): A link to the server could not be established in /home/u492365117/public_html/enregister.php on line 14

Deprecated: mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 15

Warning: mysql_real_escape_string(): Access denied for user 'u492365117'@'10.2.1.3' (using password: NO) in /home/u492365117/public_html/enregister.php on line 15

Warning: mysql_real_escape_string(): A link to the server could not be established in /home/u492365117/public_html/enregister.php on line 15

Warning: mysql_query() expects parameter 2 to be resource, boolean given in /home/u492365117/public_html/enregister.php on line 24
UTILISATEUR AJOUTE


A voir également:

1 réponse

jordane45 Messages postés 38178 Date d'inscription mercredi 22 octobre 2003 Statut Modérateur Dernière intervention 16 mai 2024 4 668
22 mars 2016 à 19:46
Bonjour,

Pour commencer :

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/u492365117/public_html/enregister.php on line 7

Tu utilises l'ancienne extension Mysql (considérée comme obsolète ! )
Je t'invite fortement à passer à mysqli ou ( perso je préfère...) la PDO.

Je t'invite à lire ceci :
- https://www.commentcamarche.net/faq/43261-php-l-extension-mysql-est-obsolete
- https://www.commentcamarche.net/faq/44117-connexion-a-une-base-avec-pdo-mysqli



Ensuite:

Warning: mysql_connect(): Unknown MySQL server host 'mysqlhostingerfr' (-2) in /home/u492365117/public_html/enregister.php on line 7

et :

Warning: mysql_real_escape_string(): Access denied for user 'u492365117'@'10.2.1.3' (using password: NO) in /home/u492365117/public_html/enregister.php on line 11

Warning: mysql_real_escape_string(): A link to the server could not be established in /home/u492365117/public_html/enregister.php on line 11


Très certainement des erreurs dans les paramètres que tu utilises pour te connecter à la BDD.....
Le HOST ... mais aussi le USER sont à vérifier.....
Sers toi des informations fournies par ton hébergeur .....

0