summaryrefslogtreecommitdiff
path: root/IUT_auth_my.inc.php
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:01:33 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:01:33 +0200
commit30238f5847b418645983a4efddb13f087c99e585 (patch)
tree0cec8e6d657bbecab865f75a5c3f8bffc369b47f /IUT_auth_my.inc.php
parent052fe50e28a53c3ece30c2ad1090f313b3bb7337 (diff)
download2007-AWOR-30238f5847b418645983a4efddb13f087c99e585.tar.gz
2007-AWOR-30238f5847b418645983a4efddb13f087c99e585.tar.bz2
2007-AWOR-30238f5847b418645983a4efddb13f087c99e585.zip
Premiers tests 2007-01-02+20:01:04 - 2007-02-02+16:43:14
Diffstat (limited to 'IUT_auth_my.inc.php')
-rw-r--r--IUT_auth_my.inc.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/IUT_auth_my.inc.php b/IUT_auth_my.inc.php
new file mode 100644
index 0000000..1fb5ae6
--- /dev/null
+++ b/IUT_auth_my.inc.php
@@ -0,0 +1,16 @@
+<?php
+
+function mysql_conn_select_db()
+ {
+ $mysql_host='localhost';
+ $mysql_user='258';
+ $mysql_pass='ess_ku_elle';
+ $mysql_base='258_tests';
+
+ $link = mysql_connect($mysql_host,$mysql_user,$mysql_pass)
+ or die('Erreur MySql : Impossible de se connecter : ' . mysql_error());
+ mysql_select_db($mysql_base) or die('Erreur Mysql : Impossible de sélectionner la database');
+
+ return ($link);
+}
+?>