-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·28 lines (20 loc) · 926 Bytes
/
index.php
File metadata and controls
executable file
·28 lines (20 loc) · 926 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Statistiques</title>
</head>
<body>
<h1>les donnes via la fonction trackMe()</h1>
<?php
// différence include / require_once : include > le fichier continu de s'exécuter tandis que require_once est obligatoire (ex : si on veut obliger l'internaute à s'authentifier)
include_once("lib/stats.php");
// On appelle la fonction trackMe qu'on a créé dans stats.php
// trackMe();
$donnees = getUserInfo();
ecrireStats($donnees);
?>
<h1>Insertion dans la BDD</h1>
<p>Server log analytics provides companies and organisations with all the features of the Javascript tracking code method, but with a higher level of security and feasibility. It can be used for all kinds of purposes – from web analytics to intranet analytics, and even CRM and other platform-based analytics.</p>
</body>
</html>