This is the code from the form
"<form action=\"./inhalt/verbindung.php\" action=\"post\">
<table>
<tr>
<td>Schulname:</td>
<td><input type=\"text\" name=\"schule\"></td>
</tr><tr>
<td>Loginname:</td>
<td><input type=\"text\" name=\"name\"></td>
</tr><tr>
<td>Passwort:</td>
<td><input type=\"password\" name=\"password\"></td>
</tr><tr>
<td> </td>
<td><input type=\"submit\" value=\"Einloggen\"></td>
</tr>
</table>
</form>";
and this is the connect line.
Where does the encryption take place so that the passwort doesnt get transmitted in plain text. In the browser
mysql_connect("localhost",$name,$password)
or die ("Die Verbindung ist fehlgeschlagen!!<br> Sie haben eventuell keine Zugangsberechtigung für diesen Service.");
// Datenbank benutzen bzw. auswählen
mysql_select_db($schule)
or die ("Die Datenbank <b>$schule</b> wurde nicht gefunden !");