このフォーラムや他のフォーラム内に複数の例があることは承知しています。それらすべてを試しましたが、どちらも機能しませんでした。PHPスクリプト内にロードされるphpファイルに書き込むphpスクリプトを取得しました。
私の目的は、人々が「Enter」を押すと、自動brタグをphp-postに入れることです
<?php
if ( isset( $_POST[ 'submit' ] ) ) {
$com = $_POST['txt'];
If ($com === "") {
echo "<font color=red><b>You must write something to post!</font></b>";
die;
}
$time = gmdate("M d Y H:i:s",time()+(2*60*60));
$com = $_POST['txt'];
$count = strlen($com);
$com = stripslashes($com);
$breaks = array("<br />","<br>","<br/>");
$com = str_ireplace($breaks, "\r\n", $com);
$fp = $file = fopen( "NAME_OF_POST.php", "a");
Multiple fwrites follows.....
Multiple fwrites follows.....
rewind($fp);
fclose($fp);
echo '<script type="text/javascript">window.location ="";</script>';
}
?>
そしてそれは次の中にロードされます:
<textarea name="txt" id="area" class="typo_vind" placeholder="......" tabindex="1"></textarea>
Enter からの改行を br-tags に置き換える方法を知っている人はいますか?
事前に、あなたより:)!