Okay Thank you for your Response!.
But i does not work, how i want it.
That's my Php.
code:
<?php
$datei = "C:/twitter.txt";
$xmltext = join(file("http://www.twitter.com/status/user_timeline/p3acemak3r.xml"), "");
$xmlobj = simplexml_load_string($xmltext);
print header("Content-type: text/plain");
//print_r ($xmlobj);
$twitt = $xmlobj->status->text;
print ($twitt);
$dat=fopen($datei,"w+");
fwrite($dat,$twitt);
fclose($dat);
?>
If i open it in my Browser, it works everything.
But if i use :
code:
xmlhttp.open("GET", "http://localhost/twitter/twitter.php", true);
xmlhttp.send('');
Nothing works.