summaryrefslogtreecommitdiff
path: root/appli_3_alpha_old/include/connect_free.inc.php
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:06:47 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:40:27 +0200
commit679551b7b545a72d376d9e60a8f3da66e44a6855 (patch)
tree92a6efbe3910650dd210f6f0e1edbd28502ea255 /appli_3_alpha_old/include/connect_free.inc.php
parent71b503f07007346eda3d1da71d4a64f31f13d846 (diff)
download2007-AWOR-679551b7b545a72d376d9e60a8f3da66e44a6855.tar.gz
2007-AWOR-679551b7b545a72d376d9e60a8f3da66e44a6855.tar.bz2
2007-AWOR-679551b7b545a72d376d9e60a8f3da66e44a6855.zip
Version alpha_old2 2007-02-04+10:57:50 - 2007-02-21+19:05:18
Diffstat (limited to 'appli_3_alpha_old/include/connect_free.inc.php')
-rw-r--r--appli_3_alpha_old/include/connect_free.inc.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/appli_3_alpha_old/include/connect_free.inc.php b/appli_3_alpha_old/include/connect_free.inc.php
new file mode 100644
index 0000000..644b36b
--- /dev/null
+++ b/appli_3_alpha_old/include/connect_free.inc.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