diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 10:43:53 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 10:43:53 +0200 |
commit | e247526ba388ce3def4f83ad8fb26852082bb7dd (patch) | |
tree | 335d0bd2797542462a3074e0c524a41a45e0257b /appli_3_alpha_old/include/connect.inc_free.php | |
parent | 679551b7b545a72d376d9e60a8f3da66e44a6855 (diff) | |
download | 2007-AWOR-e247526ba388ce3def4f83ad8fb26852082bb7dd.tar.gz 2007-AWOR-e247526ba388ce3def4f83ad8fb26852082bb7dd.tar.bz2 2007-AWOR-e247526ba388ce3def4f83ad8fb26852082bb7dd.zip |
Version alpha_old3 2007-02-22+15:12:38 - 2007-02-27+20:02:20
Diffstat (limited to 'appli_3_alpha_old/include/connect.inc_free.php')
-rw-r--r-- | appli_3_alpha_old/include/connect.inc_free.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/appli_3_alpha_old/include/connect.inc_free.php b/appli_3_alpha_old/include/connect.inc_free.php new file mode 100644 index 0000000..644b36b --- /dev/null +++ b/appli_3_alpha_old/include/connect.inc_free.php @@ -0,0 +1,14 @@ +<?php +/* + * Paramètres de connexion à la base MySQL + */ + +// $bd représente le nom de la database à utiliser +$bd = "awor"; +// mysql_connect(<nom_ou_ip_serveur_mysql>, <utilisateur_mysql>, <mot_de_passe_en_clair_mysql>); +$link = @mysql_connect('localhost', 'awor', 'blagnac'); + +@mysql_select_db($bd , $link); + +// NB : La gestion d'erreur est inhibée. Cet include ne génèrera jamais de code, même si la connexion n'a pas pu être établie +?>
\ No newline at end of file |