Harry: variabel aus variable - irgendwie funzt deas net...

Beitrag lesen

Tag !

<?php
$inputfile = fopen("daten.txt","w");
$c = 0;
while($c <= 1000)
{

fputs ($inputfile, ${"ueber".$c});

$c++;
}
fclose($inputfile);
?>

Probiers mal so.

Ciao,

Harry