我无法让我的网站正确显示数据库条目。我正在使用换行符将格式化文本复制并粘贴到我的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 - nepaliboy007@yahoo.com
// 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>
文本我粘贴到MySQL数据库中,它在描述字段中输出:
1930年,Charles Hyde和David Vredenburg在爱荷华州比肯斯菲尔德开设了一家小型综合商店。那家商店成长为Hy-Vee--一家以优质服务和低价格而闻名的公司。作为一家员工所有的公司,Hy-Vee鼓励超过56,000名员工帮助指导公司。
我们的杰出成就体现了他们的辛勤工作和清晰的愿景。通过他们的努力,Hy-Vee这个名字已成为优质产品,低价格和卓越客户服务的代名词。我们的口号“每个过道都有帮助的微笑”表达了我们企业理念的基础。
Hy-Vee是中西部消费者对饮食,营养和健康主题信息渴望的试金石。 HealthMarket部门以天然和有机产品为特色;店内营养师的咨询服务; NuVal营养评分系统;消费者和员工健康计划;而Hy-Vee Triathlon则强调了公司对健康生活方式的承诺。
我们的公司办公室位于爱荷华州西得梅因市。 Hy-Vee校区包括一个12,000平方英尺的会议中心,用于会议,培训和继续教育课程。
我们的分销业务位于爱荷华州的Chariton,我们拥有超过150万平方英尺的最先进的仓库空间。位于爱荷华州切罗基的另一个大型配送中心,包括650,000平方英尺的干粮食品和一般商品供应商。
Hy-Vee在中西部八个州的销售额超过73亿美元,超过235家零售店,跻身美国前20家连锁超市和前50家私人公司之列。超市新闻是食品行业的权威代言人,因其在提供促进健康生活方式的服务和计划方面的领导地位,公司荣获整体健康企业奖。
答案 0 :(得分:4)
需要将换行符(“\ n”和/或“\ r”)转换为中断标记(&lt; br /&gt;)才能在网络浏览器中正确显示
str_replace("\n", "<br />", "My string\n has line breaks");
如果你想使用段落标签,你可以这样做:
echo "<p>".str_replace("\n", "</p><p>", "My string\n has line breaks")."</p>";
答案 1 :(得分:2)
为此,您可以使用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实体对特殊字符进行编码。
答案 2 :(得分:1)
浏览器会忽略换行符(但是在检查源时会看到它们。)
您需要将它们转为<br />
(最简单的解决方案为$str = str_replace ("\n", "<br />", $str);
)