Commit 42f1792e9889766b0fe95a904a357b4548ff8d63
1 parent
f0480a6d
Credentials fixed
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
news.php
1 | 1 | <?php |
2 | 2 | require_once("creds.php"); |
3 | - $link = mysql_connect(MYSQL_HOSTNAME, MYSQL_USERNAME, MYSQL_PASSWORD) | |
3 | + $link = mysql_connect(__MYSQL_HOSTNAME__, __MYSQL_USERNAME__, __MYSQL_PASSWORD__) | |
4 | 4 | or die("Impossible de se connecter : " . mysql_error()); |
5 | 5 | echo 'Connexion réussie'; |
6 | 6 | ... | ... |