here is the code in my page, Found in that config file is the first line of code that starts the sessions, which can be seen below as well. If I move the include below the doctype, then I get an error associated with sessions. Thanks for any suggestions on this.
Index.php
PHP Code:
<? include ("config.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
config.php
PHP Code:
<?php
session_start();
Bookmarks