以下代码在使用XAMPP的本地服务器上运行良好。当上传到GoDaddy时,没有一个PHP工作,我重复这一行两次。
- >获得您职业生涯下一步所需的管理认证!
- >获得您职业生涯下一步所需的管理认证!
这是应该显示的内容
"晚上好,今天是星期二。现在时间是22:47。 Jaza Solutions现已关闭。我们将在明天上午8点再次开放。请明天给我们打个电话,获得您职业生涯下一步所需的管理认证!"
GoDaddy的技术人员建议我谷歌问题。我迷失在本地如何工作但不在他们的服务器上。非常感谢任何帮助!
<?php
$day = date('l');
$time = date('H:i');
$hour = date('H');
?>
<!DOCTYPE html>
<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</title>
<link rel = "stylesheet"
type = "text/css"
href = "jazasolutions.css" />
<script src = "http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.mil.js"></script>
<script type = "text/javascript"
src = "navmenu.js">
</script>
</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.html>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">
<?php if ($hour > 0 && $hour < 8) { ?>
<p> Good morning, today is <?php echo $day; ?>. The time is now <?php echo $time; ?>. Jaza Solutions will be open at 8 AM. Please give us a call shortly and
<?php } elseif ($hour >= 8 && $hour < 12) { ?>
<p> Good morning, today is <?php echo $day; ?>. The time is now <?php echo $time; ?>. Jaza Solutions is open. Please give us a call at (301)861-2133 and
<?php } elseif ($hour >= 12 && $hour < 17) { ?>
<p> Good afternoon, today is <?php echo $day; ?>. The time is now <?php echo $time; ?>. Jaza Solutions is open. The time is now <?php echo $time; ?>. Jaza Solutions is open. Please give us a call at (301)861-2133 and
<?php } else { ?>
<p> Good evening, today is <?php echo $day; ?>. The time is now <?php echo $time; ?>. Jaza Solutions is now closed. We will be open again at 8 AM tomorrow. Please give us a call tomorrow and get the Management Certification you need to make the next step in your career! <?php } ?> </p>
<br>
<h1> Jaza Solutions offers industry endorsed training in: </h1>
<ol>
<li> <a href=JazaSolutionsPMP.html>PMP</li><p><i>New Knowledge area sample questions now available</i></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>