gpt4 book ai didi

php - PHP 中的 div,无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-03 19:39:11 25 4
gpt4 key购买 nike

我正在尝试在我的 php 脚本中使用我的 css,这是我尝试过的:

    ....
else
{
echo"<html>
<head>
<link href='styles.css' rel='stylesheet' type='text/css' />
</head>
<body>
<div id="main">
<div id="header">
</div>
<div id="contentWrapper">
<div id="leftBox">
<div id="leftBoxContent">
<div id="lightBox">
</div>
</div>
</div>
<div id="rightBox">
</div>
<div id="content">
<p>Wrong Username or Bad Password.</p>
<p><a href='./index.php'>Click Here</a> to try again.</p>
</div>
<br class="clearFloat" />
</div>
<div id="footer"></div>
</div>
</body>
</html>";
}
?>

它是我的登录脚本的 else 语句,当我拿走 div 时,html 显示正常,但将它们保留在其中会导致错误。我究竟做错了什么?我应该将我的 CSS 放在页面上吗??

谢谢

最佳答案

你必须更正你的引号,因为你不能在不转义的情况下使用 "insite of ""。执行以下操作之一:

echo "this is a \"test\" ... ";
echo "this is a 'test' ... ";
echo 'this is a "test" ... ';
echo 'this is a \'test\' ... ';

关于php - PHP 中的 div,无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5498365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com