diff options
Diffstat (limited to 'www/html/fonctions.py')
-rwxr-xr-x | www/html/fonctions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/www/html/fonctions.py b/www/html/fonctions.py index c1566af..17c3624 100755 --- a/www/html/fonctions.py +++ b/www/html/fonctions.py @@ -21,3 +21,6 @@ def connexionBD(): connexion=psycopg2.connect ("host='localhost' dbname='atsdb' user='atsuser' password='123456'") return connexion +def lien(url,text): + content=("""<a href=" """ + url + """ ">""" + texte + """</a>""") + return content |