Bonjour je voudrais me connecter a ma base de donnée en serveur pour que tout le monde puisse profiter(en local tout va bien) mais j'ai des erreurs comme celui-ci :
mon hébérgeur c'est Hostinger
le nom d'hote c'est : mysql.hostinger.fr
Fatal error: Uncaught exception \'PDOException\' with message \'SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo failed: No such host is known. \' in C:\\wamp\\www\\compteurvues\\v ideos-mateo.php on line 33
Essayez de m'expliquer etape par etape si non je fais une fausse manip et je reste bloqué.
Et voici le code :
Code HTML:<html xmlns="http://www.w3.org/1999/xhtml"> <!DOCTYPE html> <html> <head> <title>Videos de Mateo Adelaide</title> <link rel="stylesheet" type="text/css" href="stylepage.css"> <link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow" rel="stylesheet"> <meta name="viewport" content="width=device-width, user-scalable=no"> <link rel="icon" type="image/png" href="images/favicon-drogue.png"> <meta charset="utf-8"> </head> <body> <header> <div id="fond-vert"><p>Le site de Test</p></div> <ul class="menu"> <li><a href="index.php">Acceuil</a></a></li> <li><a href="videos-mateo.php">Videos de Matéo Adelaide</a></li> <li><a href="menu3.php">Menu 3</a></li> </ul> <div id="image-nyan-cat"><img src="images/nyan-cat.gif" height="250px" width="250px"></div> <div id="image-just-do-it"><img src="images/just-do-it.gif" height="130px" width="130px"></div> </header> <div id="content-page"></div> <div id="fond-blanc"> <form method="POST" action="" style="padding: 20px 20px;"> <label>Entrez un nombre inférieur a 16 :</label> <input type="text" name="id" placeholder="Entrez une valeur"> <input type="submit" name="OK"> </form> [PHP]<?php $bdd = new PDO("mysql:host=mysql.hostinger.fr;dbname=video;charset=utf8", "mon_utilisateur", "mon_motdepasse"); $requete = $bdd->prepare("SELECT * FROM videos WHERE id = :id"); $requete->execute(array('id' => $_POST['id'])); while ($resultat = $requete->fetch()) { ?> <div style="padding: 0px 20px;color: #02B4E8;"> <?php echo $resultat['id'] . ". ";?> <?php echo $resultat['titre'] . "</br>";?> </div> <?php } ?> [/PHP] </div> <footer> <p>Tous droits resérvés a Karim</p> </footer> </html>
-----