Garret: Benutzeranmeldung mit PHP und mySQL

Beitrag lesen

Hier mal ein auszug aus dem jetzigen Code:
Zuerst wird der Teil aus dem Programm aufgerufen:

<?php
 echo "<form action = 'phx.php' method = 'post'>";
 echo "<input name='Benutzer'>Benutzername<p>";
 echo "<input name='Pw'>Passwort<p>";

echo "<input type='submit' name='set'>";
 echo "<input type='reset'>";
?>

Und bei einem Klick auf dem Button dann:

<?php

if (isset($_POST['set']))
 {
  echo "<form action = 'phx.php' method = 'post'>";

if ($_POST['Benutzer']=='pad01')
  {
   echo "<font color='green'>Login OK</font><p>";
   echo "<input type='submit' name='set2' value='Charakter erstellen'><br><br><br>";
  }
  else
  {
   echo "<center>";
   echo "<br><br><br><br><br>";
   echo "<table border='1' bordercolor='red'>";
   echo "<tr><td>";
   echo "<center>";
   echo "<font color='red'><b>::Fehler::</b></font>";
   echo "<br><br>";
   echo "<div><font color='red'>::</font> Falsche Eingabe oder Benutzer noch nicht freigeschaltet <font color='red'>::</font></div>";
   echo "</center>";
   echo "</td></tr>";
   echo "</table>";
   echo "<br><br><br>";
   echo "</center>";
  }
 }
?>