如何检测表单中有不同的段落?在此示例中,如果用户编写不同的段落,则回显将所有内容放在一起。我尝试了 white-space:pre 但它不起作用。我不知道我还能做些什么来回显文本<p>
?
CSS:
#text {
white-space:pre;
}
HTML:
<form action='normal-html.php' method='post'>
<textarea id="text" name='text' rows='15' cols='60'></textarea> <br/>
<input type='submit' value='Convertir a html' />
</form>
<br />
<?php
$text = $_POST[text];
echo $text;
?>