Hi,
I am having the above error on one of my php pages, it is an error that I have not seen before nor have I had any luck resolving it myself by searching the net.
The page below is the one that is called as the problem occurs, if anyone could see what the problem is I would be very grateful.
Also, this page is linked to a couple of other pages, but to save clogging the thread I will display the main page hope that the problem lies there, if not I will happily upload the other pages to solve this incredibly annoying problem!
Thanks in advance
<?php
session_start();
require "Headers.php"; #This loads button onto the top of the page.
require "ProductFieldForm.php"; # This is a form that adds data to DB
require "DisplayFields.php"; # This displays the results from the above
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<style type="text/css">
<!--
.style1 {font-size: 18px}
-->
</style>
</head>
<body>
<?php
title(); #This is the name of the function called from headers.php
?>
<table width="455" border="0">
<tr>
<td width="449"><span class="style1"><?php echo $_SESSION['FName']?> , Change your Settings here...</span></td>
</tr></table>
<img src="Images/SETTINGSBANNER.png"><br>
<div id="left"><img src="Images/ProductFields.png" align="left">
<?php
DisplayFields(); #this is the function from displayfields.php
?>
</div>
<div id="right"><img src="Images/AddProductFields.png" align="right">
<?php
AddField(); #This is the function from productfieldform.php
?>
</div>
<div id="right"><img src="Images/Notice.png" align="right">
<br>
If you have made an error you can restart the process by clicking the Settings button
</div>
</body>
</html>