我已经将我的网站从静态HTML转换成PHP。在此过程中,我的PHP文件正在从未知的源中提取旧信息(我已经删除了所有旧文件)。
这是具体的问题。当我在我的div id="main“部分添加一个段落标签时,我获得了”获得管理证书,您需要在职业生涯中迈出下一步!“它不在我的PHP文件中。当我在Google Chrome上检查时,这是怎么出现的
==$0“获得你职业生涯下一步所需的管理认证!"
==$0意味着什么吗?这是从哪里来的?
以下是实际文件:
<?php
$day = date('l');
$time = date('H:i');
$hour = date('H');
?>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Project Management Training and Consulting">
<meta name="keywords" content="PMP, CAPM, Agile, ITIL, PMI-ACP, SCRUM, Waldorf, MD, Washington, DC, Alexandria, VA">
<meta name="author" content="Vince McKeown">
<title>Jaza Solutions - Home PHP</title>
<link rel = "stylesheet" type = "text/css" href = "jazasolutions.css" />
</head>
<body>
<div id = "header">
<img src="jazasolutions2.png" alt = "Jaza Solutions, LLC">
</div>
<nav>
<div id="nav">
<ul>
<li><a href=JazaSolutionsContact.html>Contact</a></li>
<li><a href=JazaSolutionsAboutUs.html>About Us</a></li>
<li><a href=JazaSolutionsCourses.html>Courses</a></li>
<li><a href=index.php>Home</a></li>
</ul>
</div>
</nav>
<div>
<img class="imageSideRight" src="Meeting.jpeg" alt = "Jaza Solutions, LLC">
</div>
<div class="sideRight">
<h2> Upcoming Classes </h2>
<p class="microsoft marquee"><span>Enrollment discounted at 50% for a limited time for the <font color="red">6/25/18</font color> PMP boot camp.</span></p>
<p> <font color="red">6/25/18</font> PMP Bootcamp: Waldorf, MD </p>
<p> <font color="red">7/23/18</font> PMP Bootcamp: Waldorf, MD </p>
</div>
<div class = "main">
<p> Good morning </p>
<h1> Jaza Solutions offers industry endorsed training in: </h1>
<ol>
<li> <a href=JazaSolutionsPMP.html>PMP</li>
<li> <a href=JazaSolutionsCAPM.html>CAPM</a></li>
<li> <a href=JazaSolutionsITIL.html>ITIL</a></li>
<li> <a href=JazaSolutionsAgile.html>Agile & Scrum</a></li>
<li> <a href=JazaSolutionsSixSigma.html>Six Sigma</a></li>
</ol>
<br>
<h1> The Jaza Advantage: </h1>
<ul>
<li> Acquire certifications in Management not just training </li>
<li> Get trained by experts at your site or ours </li>
<li> Flexible training hours & online training to fit your needs </li>
</ul>
</div>
<div id = "footer">
<img class="imageSideRight" src="PMI.png" alt = "Jaza Solutions, LLC" height="60" margin-bottom= "0px" width = "100">
<p> <br> Call us: (301)861-2133 <br> Email us: info@jazasolutions.com <br><small>© 2017 Jaza Solutions, LLC</small></p>
</div>
</body>
</html>
发布于 2018-05-24 14:50:34
我无法解释为什么这样做,但我最好的猜测是,GoDaddy正在某个未知的位置缓存我的旧文件。我将div类从main更改为空,它在某个地方停止从旧文件中提取。
<?php
$day = date('l');
$time = date('H:i');
$hour = date('H');
?>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Project Management Training and Consulting">
<meta name="keywords" content="PMP, CAPM, Agile, ITIL, PMI-ACP, SCRUM, Waldorf, MD, Washington, DC, Alexandria, VA">
<meta name="author" content="Vince McKeown">
<title>Jaza Solutions - Home PHP</title>
<link rel = "stylesheet" type = "text/css" href = "jazasolutions.css" />
</head>
<body>
<div id = "header">
<img src="jazasolutions2.png" alt = "Jaza Solutions, LLC">
</div>
<nav>
<div id="nav">
<ul>
<li><a href=JazaSolutionsContact.html>Contact</a></li>
<li><a href=JazaSolutionsAboutUs.html>About Us</a></li>
<li><a href=JazaSolutionsCourses.html>Courses</a></li>
<li><a href=index.php>Home</a></li>
</ul>
</div>
</nav>
<div>
<img class="imageSideRight" src="Meeting.jpeg" alt = "Jaza Solutions, LLC">
</div>
<div class="sideRight">
<h2> Upcoming Classes </h2>
<p class="microsoft marquee"><span>Enrollment discounted at 50% for a limited time for the <font color="red">6/25/18</font color> PMP boot camp.</span></p>
<p> <font color="red">6/25/18</font> PMP Bootcamp: Waldorf, MD </p>
<p> <font color="red">7/23/18</font> PMP Bootcamp: Waldorf, MD </p>
</div>
<div>
<h1></h1>
<h2> Jaza Solutions offers industry endorsed training in: </h2>
<ol>
<li> <a href=JazaSolutionsPMP.html>PMP</li>
<li> <a href=JazaSolutionsCAPM.html>CAPM</a></li>
<li> <a href=JazaSolutionsITIL.html>ITIL</a></li>
<li> <a href=JazaSolutionsAgile.html>Agile & Scrum</a></li>
<li> <a href=JazaSolutionsSixSigma.html>Six Sigma</a></li>
</ol>
<br>
<h2> The Jaza Advantage: </h2>
<ul>
<li> Acquire certifications in Management not just training </li>
<li> Get trained by experts at your site or ours </li>
<li> Flexible training hours & online training to fit your needs </li>
</ul>
</div>
<div id = "footer">
<img class="imageSideRight" src="PMI.png" alt = "Jaza Solutions, LLC" height="60" margin-bottom= "0px" width = "100">
<p> <br> Call us: (301)861-2133 <br> Email us: info@jazasolutions.com <br><small>© 2017 Jaza Solutions, LLC</small></p>
</div>
</body>
</html>
https://stackoverflow.com/questions/50496267
复制相似问题