min kode er herunder, men skal jeg ikke have <head> delen før det andet, ellers bliver siden ikke valideret på w3
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title></title>
<meta name="description" content="">
<META name="keywords" content="">
<meta http-equiv="Content-Language" content="da">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META NAME="Revisit-after" CONTENT="30">
<META name="Robots" content="all">
<meta http-equiv="pragma" content="no-cache">
<link rel="stylesheet" href="
http://www.magiske-michael.dk/styles/generelt-style.css" type="text/css">
<link rel="stylesheet" href="
http://www.magiske-michael.dk/styles/link-style.css" type="text/css">
<link rel="stylesheet" href="
http://www.magiske-michael.dk/styles/tabel-style.css" type="text/css">
<link rel="stylesheet" href="
http://www.magiske-michael.dk/styles/tekst-style.css" type="text/css">
</head>
<body>
<table class="hoved">
<tr>
<td>
<table class="top">
<tr>
<td>
<?php
ob_start();
//include the header.php file
require("top.php");
?>
</td>
</tr>
</table>
<table class="menu">
<tr>
<td>
<a href="
http://validator.w3.org/check?uri=referer"><img src="
http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01 Transitional" height="31" width="88"></a>
</td>
</tr>
</table>
<table class="indhold">
<tr>
<td>
<?
echo "<br><br><br><br>";
//Write the login form out
echo "<h2>Her kan du logge ind på de hemmelige sider.<br>Er du ikke medlem kan du blive det ved at klikke på tilmeld øverst på siden.</h2><br>
<form method='post' action='login.php?action=check'>
<table><tr><td>
<h3>Brugernavn</h3></td>
<td><h3><input type=text name=Uname></h3></td>
</tr><tr>
<td><h3>Password:</h3></td><td><h3><input type=password name=Pword></h3></td>
</tr></table>
<input type=submit value=Login><h3><br>
<a href=forgotpassword.php>Glemt password</a></h3>
</form><br>
<a href=http://www.magiske-michael.dk>Tilbage til magiske-michael.dk</ a>";
//check the input
if($_GET['action'] == 'check')
{
//find the user
$result = mysql_query("SELECT * FROM loginphp WHERE Uname='{$_POST['Uname']}'") or die(mysql_error());
$row = mysql_fetch_array( $result ); //set $row to result
if($row['Uname'] == "")
{
echo error();
}
else
{
//$enc = md5($_POST['Pword']);
$enc = $_POST['Pword'];
if($row['Pword'] == $enc)
{
$_SESSION['Uname'] = $_POST['Uname'];
$_SESSION['lp'] = 'pl';
header("Location: main.php");
exit;
}
else
{
echo error();
}
}
}
if($_GET['action'] == 'registered')
{
echo "<b>Du er nu tilmeldt</b>";
}
function error()
{
echo "<b>Brugernavn/passwor er ikke korekt</b>";
}
?> </td>
</tr>
</table>
<table class="menu">
<tr>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>