le 06/10/2009 à 22:37
exeption compteur
bonjour, je viens d'installer un compteur PHP sur mon site et j'aimerais savoir si il est possible que quand je le visite de mon PC il ne me compte pas.
Merci
Merci
<script language="JavaScript" type="text/javascript">
<!--
function actions(text) {
text = ' ' + text + '';
if (document.post.message.createTextRange && document.post.message.caretPos) {
var caretPos = document.post.message.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + '' : text;
document.post.message.focus();
} else {
document.post.message.value += text;
document.post.message.focus();
}
}
function url(text) {
var autre = prompt("<?=LG_URL_A_METTRE?> :","http://");
text = ' ' + text + autre + '[/url]';
if (document.post.message.createTextRange && document.post.message.caretPos) {
var caretPos = document.post.message.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + '' : text;
document.post.message.focus();
} else {
document.post.message.value += text;
document.post.message.focus();
}
}
function email(text) {
var autre = prompt("<?=LG_EMAIL_A_METTRE?>:","");
text = ' ' + text + autre + '[/email]';
if (document.post.message.createTextRange && document.post.message.caretPos) {
var caretPos = document.post.message.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + '' : text;
document.post.message.focus();
} else {
document.post.message.value += text;
document.post.message.focus();
}
}
function gras(text) {
var autre = prompt("<?=LG_TEXTE_GRAS?>:","");
text = ' ' + text + autre + '[/b]';
if (document.post.message.createTextRange && document.post.message.caretPos) {
var caretPos = document.post.message.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + '' : text;
document.post.message.focus();
} else {
document.post.message.value += text;
document.post.message.focus();
}
}
function souligne(text) {
var autre = prompt("<?=LG_TEXTE_SOULIGNER?>:","");
text = ' ' + text + autre + '[/u]';
if (document.post.message.createTextRange && document.post.message.caretPos) {
var caretPos = document.post.message.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + '' : text;
document.post.message.focus();
} else {
document.post.message.value += text;
document.post.message.focus();
}
}
function italique(text) {
var autre = prompt("<?=LG_TEXTE_ITALIQUE?>:","");
text = ' ' + text + autre + '[/i]';
if (document.post.message.createTextRange && document.post.message.caretPos) {
var caretPos = document.post.message.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + '' : text;
document.post.message.focus();
} else {
document.post.message.value += text;
document.post.message.focus();
}
}
//-->
</script>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<?
for ($i = 0; $i < count($souriez); $i++) {
$sizeImg = GetImageSize("images/smileys/".$souriez[$i][1]);
echo "<a href='javascript:actions(\"".$souriez[$i][0]."\")'>";
echo "<img src=\"images/smileys/".$souriez[$i][1]."\" ".$sizeImg[3]." border=\"0\" alt=\"".$souriez[$i][2]."\">";
}
?>
</td>
</tr>
</table>
<br>
<b> |
<a class="minilien" href="javascript:url('[url]')"><?=LG_URL?></a> |
<a class="minilien" href="javascript:email('[email]')"><?=LG_MAIL?></a> |
<a class="minilien" href="javascript:gras('[b]')"><?=LG_GRAS?></a> |
<a class="minilien" href="javascript:italique('[i]')"><?=LG_ITALIQUE?></a> |
<a class="minilien" href="javascript:souligne('[u]')"><?=LG_SOULIGNE?></a> |
</b>
<?php
/* ----- Mise à jour du cookie ---- */
if(isset($_GET["readall"])) { /* Marque comme tous lus */
setcookie("CSForum_ReadAll",time(),time()+86400*365,"/",$_SERVER["SERVER_NAME"]); /* expire dans 1AN */
header("Location: $UrlSite/$folderForum");
}
if(isset($_GET["collapse"])) {
if(intval($_GET["collapse"])==1) { /* cookies pour afficher ou non l'arbre */
setcookie("CSForum_collapse",intval($_GET["collapse"]),time()+86400*365,"/",$_SERVER["SERVER_NAME"]);
header("Location: $UrlSite/$folderForum");
} else unset($_COOKIE["CSForum_collapse"]);
}
?>