aboutsummaryrefslogtreecommitdiff
path: root/fn/fn.php
blob: cef8a1c4951ead6a2f4a8fa65d0ac58c66cae170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<h4>functions</h4>

<?php
function bddconnect($host, $bdname, $user, $password)
{
	try {
		$bdd = new PDO('mysql:host=' . $host . ';dbname=' . $dbname . ';charset=utf8', $user, $password);
	} catch (Exeption $e) {
		die('Erreur : ' . $e->getMessage());
	}
	return $bdd;
}

function session()
{
	session_start();
}

function secure()
{
	if (!isset($_SESSION['id'])) {
		header("location: /");
	}
}

function head($title) {
	?>
	<head>
		<meta charset="utf8" />
		<link href="" rel="stylesheet" />
		<title><?= $title ?></title>
	</head>
	<?php
}
?>