ich nicht programmierer hab 2 schnipsel die ich nicht zusammen bringen kann.
der eine konvertiert ein paar sonderzeichen so,
function format_output($output) {
$output = str_replace('!', '%21', $output);
$output = str_replace('&', '%26', $output);
return nl2br($output);
}
function print_output($output) {
echo format_output($output);
}
bekommt die variabeln so;
<textarea name="content" cols="80" rows="7" wrap=off><?
if (isset($content)) echo htmlSpecialChars(stripslashes($content));
?></textarea>
wird dann so ausgegeben;
<? if (isset($content)) { ?>
<? print_output($content) ?>
<? } ?>
und wird dann hier gebraucht um das file zu schreiben;
<?php
$datei = fopen("$datei.txt","w");
fwrite($datei, "$content ");
fclose($datei);
?>
statt hier $content muss das print_output
irgendwie in das fwrite rein. mein syntax ist wie mein deutsch, holprig.
kann jemand mir sagen was hier los ist, i rüpf mir die letzten haare aus!
danke
der eine konvertiert ein paar sonderzeichen so,
function format_output($output) {
$output = str_replace('!', '%21', $output);
$output = str_replace('&', '%26', $output);
return nl2br($output);
}
function print_output($output) {
echo format_output($output);
}
bekommt die variabeln so;
<textarea name="content" cols="80" rows="7" wrap=off><?
if (isset($content)) echo htmlSpecialChars(stripslashes($content));
?></textarea>
wird dann so ausgegeben;
<? if (isset($content)) { ?>
<? print_output($content) ?>
<? } ?>
und wird dann hier gebraucht um das file zu schreiben;
<?php
$datei = fopen("$datei.txt","w");
fwrite($datei, "$content ");
fclose($datei);
?>
statt hier $content muss das print_output
irgendwie in das fwrite rein. mein syntax ist wie mein deutsch, holprig.
kann jemand mir sagen was hier los ist, i rüpf mir die letzten haare aus!
danke
Kommentar