25 Zeilen
Kein EOL
516 B
PHP
25 Zeilen
Kein EOL
516 B
PHP
<?php
|
|
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
define('SEMMELSTATZR_STATZIMG', true);
|
|
/*
|
|
echo "<pre>";
|
|
print_r($_SERVER);
|
|
echo "</pre>";
|
|
*/
|
|
header('Cache-Control: no-cache');
|
|
header("X-Robots-Tag: noindex, nofollow", true);
|
|
|
|
require '../../../wp-load.php';
|
|
sem_writeStatz();
|
|
|
|
|
|
// Output transparent gif
|
|
|
|
header('Content-type: image/gif');
|
|
header('Content-length: 43');
|
|
|
|
echo base64_decode('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
|
|
?>
|