Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Invalid_tag_id

Status
Not open for further replies.

tripwater

Programmer
Oct 13, 2004
12
US
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 give this error. It rmoves my opening css tag. You will notice this. If I put the < in front of the rel tag and save it removes it. Any ideas. BW 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>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top