MyBB.de Forum
Die login.php des Loginsystems - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Sonstiges (https://www.mybb.de/forum/forum-1.html)
+--- Forum: Programmierung (https://www.mybb.de/forum/forum-32.html)
+--- Thema: Die login.php des Loginsystems (/thread-7345.html)



Die login.php des Loginsystems - Mercedo - 08.10.2007

Hallo,

ich dachte ich würde alleine zurechtkommen, aber jetzt brauche ich doch euch Hilfe:
Es geht darum, dass ich ein Login-Script schreiben will

Was mir aber Probleme ist die login.php
Ich weiss nicht wie diese aufgebaut sein muss

Ich habe bereits eine Tabelle "users", darin 4 Felder "ID," "User", "Password" und "Email"
Die habe ich auch bereits testweise mal ausgefüllt.

Aber ich weiss nicht, wie man dem PHP Script sagt, dass er diese Felder zum Login benutzen soll

Wisst ihr das?

Ich hoffe ihr versteht mich überhaupt


RE: Die login.php des Loginsystems - Samu - 08.10.2007

html

<form action="seite.php" method="post">
user input
pw input
submit
</form>

php $variable = $_POST["variable"];

if($variable == $datenbankpw && $variable2 == $datenbankuser)
{
wuhahahah geschafft
}


RE: Die login.php des Loginsystems - Mercedo - 08.10.2007

Meinst du das so?

Code:
<html
<body>

<form action="seite.php" method="post">
user input
pw input
submit
</form>

<?php

$variable = $_POST["variable"];

if($variable == $datenbankpw && $variable2 == $datenbankuser)
{
wuhahahah geschafft
}

?>

</html>
</body>

?


RE: Die login.php des Loginsystems - Samu - 08.10.2007

seite.html

Code:
<form action="login.php" method="post">
user
pw
sendbutton
</form>

login.php
PHP-Code:
$user $_POST["user"];
$pw $_POST["pw"];

if(
$user == $dbuser$check TRUE;
if(
$pw == $userpw AND $check == TRUE)
{
haha ich bin eingeloggt


Sry is nich gerade schön aber keine lust ^^ tutorials bei webmasterpro.de schauen hilft


RE: Die login.php des Loginsystems - Michael - 08.10.2007

Schau mal hier: http://www.php-resource.de/tutorials/read/38/1/


RE: Die login.php des Loginsystems - Mercedo - 09.10.2007

Danke für den Link

Ich bin jetzt schon einen sehr sehr großen Schritt weitergekommen Smile