背景图只显示一次,不循环 这个用一个CSS就搞定

.{
background-repeat:no-repeat;
}

PHP后台就是一个表单域textarea,输入时候要回车时候就回车

前台<?php $text = $res_now[&apos;oem_no&apos;];
$text = str_replace("&","&amp;",$text);
$text = str_replace(" <","&lt;",$text);
$text = str_replace(">","&gt;",$text);
$text = str_replace("/n"," <br / >",$text);
$text = str_replace("/r","",$text);
echo($text);
 ?>
这样就可以