diff options
Diffstat (limited to 'fn/fn.php')
-rw-r--r-- | fn/fn.php | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1,6 +1,4 @@ -secure - -session +<h4>functions</h4> <?php function bddconnect($host, $bdname, $user, $password) @@ -24,5 +22,15 @@ function secure() header("location: /"); } } + +function head($title) { + ?> + <head> + <meta charset="utf8" /> + <link href="" rel="stylesheet" /> + <title><?= $title ?></title> + </head> + <?php +} ?> |