Re:
<?php
// js.php
header('Content-Type: application/x-javascript');
if($_SERVER['QUERY_STRING']=='') exit;
clearstatcache();
$dat='stream.datei';
if($_SERVER['QUERY_STRING']==filesize($dat)){
for($i=0;$i<30;$i++){
sleep(1);
clearstatcache();
if($_SERVER['QUERY_STRING']!=filesize($dat))
break;
}
if($i==30) exit("anzeige('',".filesize($dat).")");
}
$dat=fopen($dat,'r');
fseek($dat,$_SERVER['QUERY_STRING']);
echo 'anzeige("'.fread($dat,filesize($dat)).'\n",'.filesize($dat).')';
fclose($dat);
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<title>Main Admintool</title>
<script type="application/x-javascript">
// <![CDATA[
function anzeige(a,b){
document.getElementById('anzeige').appendChild(document.createTextNode(a))
var h=document.getElementsByTagName('head')[0]
while(h.getElementsByTagName('script').length>0)
h.removeChild(h.getElementsByTagName('script')[0])
var script=document.createElement('script')
script.src='js.php?'+b
h.appendChild(script)
}
// ]]>
</script>
</head>
<body onload="anzeige()">
<pre id="anzeige"/>
</body>
</html>
Gruß aus Berlin!
eddi
--
Wer Rechtschreibfehler findet, darf sie behalten.
Wer Rechtschreibfehler findet, darf sie behalten.