AW: Ein paar fragen zu CSS
file_gets_content():
PHP-Code:
<?
$temp = "http://chip.de";
$page = file_get_contents($temp,'r');
//inhalt von von $temp in $page gespeichert
?>
copy():
PHP-Code:
<?
copy("http://chip.de", "temp.txt");
include("temp.txt");
//inhalt von chip.de in temp.txt...