|
I have no clue what this problem is but it has to do with the first half of my code. I have copied the same exact code form another page and pasted into the file and it gives this error in the tag inspector. It removes my opening css tag. You will notice this. If I put the < in front of the link rel tag and save it removes it. Any ideas?
BTW I am using PHP & Mysql
Thanks for any help
<?
session_start();
include("../functions.php");
$db = db_connect();
//first we check to see if we are dealing with only one item and show the form
if (!empty($_GET["id"]))
{
$query = "select * from units where ID = ".$_GET["id"];
$result = @mysql_query($query);
$row = @mysql_fetch_array($result);
$value = "<html>
<head>
<title>MUMS Major Unit Management System</title>
<meta http-equiv=\"Content-Type\" content=\"text/html\" charset=\"iso-8859-1\">
link rel=\"stylesheet\" type=\"text/css\" href=\"../main.css\">
</head>
|