Z inputem poradziłem sobie. Natomiast z tą tabelką wyższą w IE nie mogę dać rady. Oto kod tej stronki:
<!--Strona główna -->
<?php
include \"config.inc.php\";
//JEŻELI NIE ISTNIEJE SESJA UŻYTKOWNIKA TO ZALOGUJ
if ( (!isset($_SESSION['nick'])) && (!isset($_SESSION['haslo'])) ) {
//jeżeli nie istnieje sesja to formularz logowania
?>
<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">
<html>
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\">
<meta name=\"pragma\" content=\"no-cache\" />
<title>Logowanie...</title>
<link rel=\"stylesheet\" type=\"text/css\" href=\"autoryzacja.css\" />
</head>
<body>
<?php
//Domyślne hasło roota: 1-zmienione, 0-nie zmienione
$DomyslneHaslo = 0;
//Połączenie z bazą danych
or
die (\"Nie udało się połączyć z bazą danych! BŁĄD: \".mysql_error()); //Wybór bazy danych
or
die (\"Nie udało się wybrać bazy! BŁĄD: \".mysql_error());
//Zapytanie o hasło administratora
$query = \"SELECT haslo FROM konto WHERE login='root';\";
or
die (\"Zapytanie nieudane! BŁĄD: \".mysql_error());
//Zamknięcie połączenia z bazą danych
if ( $query_data[0
] != MD5(\"root\") ) {
$DomyslneHaslo = 1;
}
?>
<table width=\"759\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td><h2>SYSTEM   OBSŁUGI   FIRMY   I   KLIENTA</h2></td>
</tr>
<tr>
<td><h2>SOFIK</h2></td>
</tr>
<tr>
<td><h3>( wersja   0.8 beta )</h3></td>
</tr>
</table>
<table width=\"759\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td><img src=\"images/spacer.gif\" alt=\"\" height=\"100\"></td>
</tr>
</table>
<table width=\"759\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td>
<form action=\"logon.php?<?=SID?>\" method=\"post\">
<table width=\"30%\" border=\"0\" align=\"center\" cellpadding=\"2\" cellspacing=\"1\">
<tr>
<td class=\"logbkground\"><strong>Login:</strong></td>
<td class=\"logbkground\"><input type=\"text\" name=\"logid\" value=\"\" size=\"15\" maxlength=\"15\" /></td>
</tr>
<tr>
<td class=\"logbkground\"><strong>Hasło:</strong></td>
<td class=\"logbkground\"><input type=\"password\" name=\"pas\" value=\"\" size=\"15\" maxlength=\"15\" /></td>
</tr>
<tr>
<td class=\"logbkground\"><div align=\"center\"><input type=\"Submit\" name=\"Submit\" value=\" Zaloguj \"></div></td>
<td class=\"reg\"><div align=\"left\">  <a href=\"register.php\">Rejestracja</a></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<?php
if ( $DomyslneHaslo == 0)
{
?>
<table width=\"759\" align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr>
<td><img src=\"images/spacer.gif\" alt=\"\" width=\"0\" height=\"10\"></td>
</tr>
<tr>
<td><h2 class=\"bezpieczenstwo\">BAZA NIE JEST BEZPIECZNA! Zmień domyślne hasło administratora!</h2></td>
</tr>
</table>
<?php
}
?>
</body>
</html>
<?php
}
else
{
//JEŻELI SESJA ISTNIEJE TO ZAŁADUJ PANEL NAWIGACYJNY
header(\"location: start.php?\".SID); }