我有一个文件 manage.php,其中包含 php 代码,如下所示。
其他文件在同一台 PC 和同一台服务器上运行良好(我使用 WAMP)。并且代码正在与 MySQL 数据库正确交互以实现另一个页面上的登录机制......
由于某种原因,代码没有在 FF 或 Chrome 中呈现。如您所见,在 chrome 中,代码被 html 注释块注释掉,没有任何内容被打印或读取,等等。我没有在我的文本编辑器中编写这样的代码。
我烦了。有任何想法吗?
http://captainscall.site11.com/temp_stuff/why-php.PNG
这是 manage.php 的完整脚本:
<?php
/*
/admin/index.php
admin area for Neos Massage
Made by Douglas Franz, freelance PHP/MySQL/HTML/CSS/JS/jQuery-ist.
*/
session_start();
include('models/auth.php');
include('includes/database.php');
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Neos Massage Admin Area</title>
<script type="text/javascript" src="js/jquery.js"></script>
<link rel="stylesheet" type="text/css" href="css/admin.css" />
</head>
<body>
<div id="admin_header">
<img src="../images/header-background-restored-flower-no-color.png" style="vertical-align: top;"/>
<span><b>Admin Area</b><br /><?php if (isset($_SESSION['uName'])) { echo $_SESSION['uName']; } ?></span>
<div id="border">
<img src="../images/border.png" width="100%" height="20"/>
</div>
</div>
<div id="admin_content">
<h1 style="color: #402d11;">Neos Massage - Manage</h1>
<hr />
<a href="index.php?logout">logout</a>
<br />
<?php var_dump($_SESSION); echo "this is a test"; ?>
<?php print "this is a test"; ?>
</div>
</body>
</html>