Hi,
$pz = 1;
$datei1 = fopen('bla.txt', 'r+');
$pz = $pz + "3";$dateiinhalt = file_get_contents("bla.txt");
$dateiinhalt[$pz] = str_replace('a', 'b', $dateiinhalt[$pz]);
fwrite($datei1,$dateiinhalt[$pz]);
fclose($datei1);
>
> was mache ich falsch?
So ziemlich alles.
fopen und file\_get\_contents sind in Kombination Blödsinn - bitte lies im handbuch zu file\_get\_contents nach, wie die Funktion arbeitet.
Und ein Array, von dem du uns hier erzählst, hast du momentan auch überhaupt keins.
MfG ChrisB
--
RGB is totally confusing - I mean, at least #C0FFEE should be brown, right?