新手php问题包括功能

时间:2015-03-21 20:10:20

标签: php

我有一个非常基本的问题,我似乎无法弄清楚或找到答案。我的php不能在我的本地主机(wamp)上工作,或者当我将它上传到我的网站/服务器时。

我只是想"包括"我的index.php文件上的两个文件显示其他html。无论出于何种原因,php都无法正常工作,并且不会在我的index.php文件中显示任何内容。

这是我的index.php



<php? include 'inc/header.php';?>

	<div class="container">
		<p>main content.what is going on</p>
	</div>
<php? include 'inc/footer.php';?>
&#13;
&#13;
&#13;

这是我的header.php文件的一个例子..

&#13;
&#13;
<!doctype html>
<html>
<head>
	<title>stuff</title>
	<link rel="stylesheet" href="reset.css">
	<link rel="stylesheet" href="style.css">
</head>
<body>
	<header>
		<h1>Is stuff here?</h1>
	</header>
&#13;
&#13;
&#13;

我似乎无法弄明白,任何想法都会非常有用。

1 个答案:

答案 0 :(得分:1)

您的PHP启动标记错误。它应该是

<?php