Hi: I keep getting this error
Warning: include(test/header.php) [function.include]: failed to open stream: No such file or directory in D:\Hosting\7520570\html\test\Contact Us\contact.php on line 11
Warning: include() [function.include]: Failed opening 'test/header.php' for inclusion (include_path='.;C:\php5\pear') in D:\Hosting\7520570\html\test\Contact Us\contact.php on line 11
and same thing for footer when I use the code below:
<?php
$extrahead = '<script type="text/javascript" src="signup.js.php"></script>';
include 'test/header.php';
?>
<!-- Breadcrumb -->
<script language="javascript" src="/test/breadnav.js">
</script>
<!-- BODY TABLE 2 -->
<!-- table2 Featured Workers-->
<table>
<td>
<table border=0 width=200 style='table-layout:fixed'>
<col width=55>
<tr>
<td>
</td>
<table>
<tr>
</tr>
</tr>
</table>
</td>
<!-- table2 Center Column1-->
<td>
<table align="center" border=0 width=350 style='table-layout:fixed'>
<col width=350>
<tr>
<td>
<h2> Contact Us</h2>
<form action="contact_insert.php" method="post" id="contact"
name="contact" onsubmit="return validateForm();" >
<table align="center">
<tr>
<td>
<label for="fname">First Name*</label>
</td>
<td colspan="2" id="fname">
<input type="text" name="fname" value="" id="fname" />
</td>
</tr>
<tr>
<td>
<label for="lname">Last Name</label>
</td><td colspan="2" id="lname">
<input type="text" name="lname" value="" id="lname" />
</td>
</tr>
<tr>
<td>
<label for="email">Email*</label>
</td><td colspan="2" id="email">
<input type="text" name="email" value="" id="email" />
</td>
</tr>
<tr>
<td>
<label for="comment">Questions/Comments*</label>
</td>
<td colspan="2" id="com">
<textarea rows="1" cols="16" name="comment" value="" id="com"></textarea>
</td>
</tr>
<tr>
<td>
<label for="anti_spam_code">Enter Code*</label>
</td>
<td colspan="2" id="vcode">
<input type="text" name="anti_spam_code" value="" id="vcode" />
</td>
</tr>
<tr>
<td>
<label for="code">Verification Code</label>
</td>
<td colspan="2" id="cod">
<img src="antispam.php">
</td>
</tr>
<tr>
<td colspan="2" id="sub">
<input type="submit" name="submitb" value="Submit"
id="submitb" />
<input type="reset" name="resetb" value="Reset" />
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</td>
<!-- table2 Center Column2-->
<td>
<table border=0 width=350 style='table-layout:fixed'>
<col width=350>
<tr>
<td>
<B>Other ways to contact us:</B>
<ul>
<li>Toll Free : </li><br>
<li>Email : </li><br>
<li>Snail Mail : .</li><br>
</ul>
</td>
</tr>
</table>
</td>
<!-- table2 Center Column3 -->
<!-- Center4 Column-->
<td>
<table border=0 width=350 style='table-layout:fixed'>
<col width=350>
<tr>
</tr>
</table>
</td>
<!-- table2 Featured Businesses-->
<td></td><td></td><td></td><td></td>
</tr>
</tr>
</table>
</td>
</table>
<?php
if (isset($message)) echo $message;
?>
<?php
include 'test/footer.php';
?>
Can someone please help?