Okay, I have some php files and I'm getting this error:
Parse error: parse error in /home2/mosquito/public_html/skunkworks/index.php on line 9
Here's the index.php file:
<?php
include("./main/config.inc");
$keywords = "test test test";
$subtitle = "Home"
// Adds the html-head code to body tag
include("./main/head.inc");
// Adds the graphical header
include("./main/header.inc");
// Adds the main body
include ("./main/body.inc");
// Adds the footer
include("./main/footer.inc");
?>
Here's the code for head.inc :
<?php
echo "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
<html>
<head>
<meta http-equiv='content-type' content='text/html;charset=iso-8859-1'>
<meta name='author' content='Mosquito Hawk Technologies - http://www.mosquitohawk.net/'>
<meta name='keywords' content='Lewis-Gale Clinic, Lewis Gale, Lewis Gale Hospital, Lewis Gale Clinic, Roanoke, Salem, Virginia, Roanoke Valley, Healthcare, Medical Services, $keywords'>
<title>$title - $subtitle</title>
<link rel='stylesheet' type='text/css' href='lgc.css'>
</head>
<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>";
?>
Thanks for any and all help!!