我知道在这个论坛和其他论坛中有多个这样的例子,我都试过了,但都无法工作。我有一个写入 php 文件的 php 脚本,它被加载到一个 php 脚本中。
我的目的是在人们按下“输入”后将自动 br-tags 放入 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>
任何人都知道如何从输入中获取换行符以替换为 br-tags?
提前,比你:)!