Onbekend |
|
Hallo ik heb de volgende code:
<? php
$Bericht = "Hallo, dit komt in mn tekstbestand";
$fp = fopen("1.txt","w");
fputs($fp, "$Bericht");
fclose($fp);
?>
<iframe src="1.txt"></iframe>
<? php $Bericht = "Hallo, dit komt in mn tekstbestand"; $fp = fopen("1.txt","w"); ?> <iframe src="1.txt"></iframe>
Maar ik krijg niks op mijn pagina te zien
|