我无法让我的网站正确显示数据库条目。我将带有换行符的格式化文本复制并粘贴到我的MySQL数据库中。如果我在终端中查看条目,它将在换行符的情况下正确显示信息。但是,当我在浏览器中查看时,所有输出似乎都忽略了所有格式设置规则,并使其变成一长串文本,恰好触及了DIV的边缘,并创建了没有格式设置的新行。我对此并不陌生,因此,如果我的问题似乎含糊不清,我想向您道歉,请您提供可能对提供准确解决方案有用的其他信息。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>
Test Site!
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<LINK href="CLLProfile.css" rel="stylesheet" type="text/css">
<script language="javascript" type="text/javascript">
// Roshan's Ajax dropdown code with php
// This notice must stay intact for legal use
// Copyright reserved to Roshan Bhattarai - [email protected]
// If you have any problem contact me at http://roshanbh.com.np
function getXMLHTTP() { //function to return the xml http object
var xmlhttp=false;
try{
xmlhttp=new XMLHttpRequest();
}
catch(e) {
try{
xmlhttp= new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e){
try{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e1){
xmlhttp=false;
}
}
}
return xmlhttp;
}
function getCategory(CatID) {
var strURL="Categories.php?category="+CatID;
var req = getXMLHTTP();
if (req) {
req.onreadystatechange = function() {
if (req.readyState == 4) {
// only if "OK"
if (req.status == 200) {
document.getElementById('categorydiv').innerHTML=req.responseText;
} else {
alert("There was a problem while using XMLHTTP:\n" + req.statusText);
}
}
}
req.open("GET", strURL, true);
req.send(null);
}
}
function getSub(CatID) {
var strURL="SubCategories.php?category="+CatID;
var req = getXMLHTTP();
if (req) {
req.onreadystatechange = function() {
if (req.readyState == 4) {
// only if "OK"
if (req.status == 200) {
document.getElementById('subcategorydiv').innerHTML=req.responseText;
} else {
alert("There was a problem while using XMLHTTP:\n" + req.statusText);
}
}
}
req.open("GET", strURL, true);
req.send(null);
}
}
</script>
</head>
<body>
<div id="wrapper">
<div class="container">
<div id="header">
<a href="index.php"><img src="images/Logo.jpg"></a>
<div class="login">
<a href="register.php">Sign Up</a> <a href="main_login.php">Login</a>
</div>
<div class="search">
<form id ="search" action="" method="post" enctype="multipart/form-data">
<label>Search:</label>
<input type="text" name="searchBox" id="searchBox" />
<input type="submit" id="Submit" value="Submit" />
</form>
</div>
</div>
<div class="navigation">
<form id ="categoryForm" action="businesses.php" method="post">
<div id="categorydiv">
<select name="thing" onChange="getSub(this.value)">
<option value=0>Select Main Category<?=$options?>
</select> </div>
<div id="subcategorydiv">
<select name="subCats" >
<option>Select Sub Category</option>
</select></div>
<input type="submit" value="Submit" id="Submit" />
</form>
</div>
<div class="content">
<?PHP
echo "<img src=" . "users/" . $username . "/images/" . $logo . " " . "width=" . "200" . " " . "height=" . "auto" . " " . "border=" . "0" . "/>" . "</a>" . "<br>";
?>
<div class="description">
<?PHP
echo "<h2>" . $name . "</h2>";
echo "<p>" . $description . "</p>";
?>
</div>
</div>
</div>
</div>
</body>
</html>
文本Im粘贴到MySQL数据库中,并在描述字段中输出:
1930年,查尔斯·海德(Charles Hyde)和大卫·弗雷登堡(David Vredenburg)在爱荷华州比肯斯菲尔德开设了一家小型综合商店。那家商店后来发展成为Hy-Vee,这是一家以优质服务和低价闻名的公司。作为一家员工所有的公司,Hy-Vee鼓励我们超过56,000名员工中的每一个为公司提供指导。
我们的杰出成就证明了他们的辛勤工作和清晰的愿景。通过他们的努力,Hy-Vee这个名字已成为优质产品,低价格和优质客户服务的代名词。我们的口号“在每个过道中都乐于助人的微笑”表达了我们企业理念的基础。
Hy-Vee是中西部消费者渴望获得有关饮食,营养和健康主题信息的试金石。 HealthMarket部门以天然和有机产品为特色;店内营养师的咨询服务; NuVal营养评分系统;消费者和员工健康计划; Hy-Vee铁人三项强调了公司对健康生活方式的承诺。
我们的公司办公室位于爱荷华州西得梅因。 Hy-Vee校园包括一个面积为12,000平方英尺的会议中心,用于会议,培训和继续教育计划。
我们的分销业务位于爱荷华州的查里顿,我们在该地区拥有超过150万平方英尺的先进仓库。另一个大型配送中心位于爱荷华州切罗基,占地65万平方英尺,用于存放干粮和普通商品。
Hy-Vee的销售额超过73亿美元,在中西部八个州拥有235多家零售店,在美国连锁超市20强和私人公司50强中名列前茅。食品行业的权威声音超市新闻(Supermarket News)向该公司授予“全健康企业奖”,以表彰其在提供可促进健康生活方式的服务和计划方面的领导地位。
最佳答案
为此,您可以使用nl2br()
将\r\n
或\n
替换为<br />
:
$text = "some\ntext\nwith new lines";
$text = nl2br($text);
产出
some<br />
text<br />
with new lines
因此,在您的代码中,将其更改为:
echo "<h2>" . nl2br(htmlentities($name)) . "</h2>";
echo "<p>" . nl2br(htmlentities($description)) . "</p>";
我还添加了
htmlentities()
来防止XSS并使用正确的HTML实体编码特殊字符。