Crew algemeen |
|
2 = 3 = [php]file_get_contents[php]
in je functie schrijf je het bestand gewoon weg?
function schrijf ($name, $content)
{
$f = fopen($name, 'r+');
fwrite($f, $content);
fclose($f);
}
schrijf('sitemasters.txt', file_get_contents('http://www.sitemasters.be/index.php'));
function schrijf ($name, $content) { } schrijf ('sitemasters.txt', file_get_contents('http://www.sitemasters.be/index.php'));
zo toch gewoon? |