Bonjour,

Voila, j'ai ce petit script php qui me permet de voir mes référents, mais je voudrais exclure certains URL de ces référents (ainsi que google par exemple, car il me donne une liste enorme), pouvez vous m'aider car là, je sais pas comment faire.

Comment faire pour que certain URL soit ignorés par ces stats?

Merci beaucoup


Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
37
<?
## Script crée par Gabriel BORDEAUX ##
 
include("lib.inc.php");
include("connect_sql.php");
 
$domaine = referer_domain($_SERVER[HTTP_REFERER]);
 
if(empty($_SERVER[HTTP_REFERER])) $domaine='Connexion directe';
 
if($domaine!='$site') {
 
  $verif1=mysql_query("SELECT domaine FROM referer2 WHERE domaine='$domaine'");
 
  while(list($domainebis) = mysql_fetch_row($verif1))
 
  { $domaine_present = $domainebis; }
 
  $verif2=mysql_query("SELECT url FROM referer WHERE url='$_SERVER[HTTP_REFERER]'");
 
  while(list($url) = mysql_fetch_row($verif2))
 
  { $url_presente = $url; }
 
    if(!$domaine_present) {
    mysql_query("INSERT INTO referer2 (id, domaine, total) VALUES('', '$domaine', '1')");
    } else {
    mysql_query("UPDATE referer2 SET total=total+1 WHERE domaine='$domaine'");
    }
 
    if(!$url_presente) {
    mysql_query("INSERT INTO referer (id, url, domaine, total) VALUES('', '$_SERVER[HTTP_REFERER]', '$domaine', '1')");
    } else {
    mysql_query("UPDATE referer SET total=total+1 WHERE url='$_SERVER[HTTP_REFERER]'");
    }
}
?>