PHP/MYSQL Inlog functie
Door Robin , 24 jaar geleden, 12.138x bekeken
Inlog functie met database backend, bewaart lokaal cookie met unieke md5 hash.
Je gebruikt het als volgt:
// header (bovenkant) van je layout
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?
include("config.php"); //plaats hier db connectie in
include("session.php"); //plaats hier onderstaand PHP script / functie in
$website ='hozee';
$domain ='www.hozee.org';
$path ='';
$expire ='10000';
$user = usersession($website,$domain,$path,$expire);
//ergens in de body van het index bestand waar je formulier wilt plaatsen
if (!$user['name'])
{
echo "<form name=\"form1\" method=\"post\" action=\"?action=login\">";
echo "Name <input type=\"text\" name=\"name\"> ";
echo "Pass <input type=\"password\" name=\"pass\"><input type='submit' value=\"submit\" alt=\"login\" name=\"login\">";
echo "</form>";
}
else
{
echo "Welkom " . $user['name'] . "<a href=\"?action=logout\">uitloggen</a>";
}
?>
include("config.php"); //plaats hier db connectie in
include("session.php"); //plaats hier onderstaand PHP script / functie in
$website ='hozee';
$domain ='www.hozee.org';
$path ='';
$expire ='10000';
$user = usersession($website,$domain,$path,$expire);
//ergens in de body van het index bestand waar je formulier wilt plaatsen
if (!$user['name'])
{
echo "<form name=\"form1\" method=\"post\" action=\"?action=login\">";
echo "Name <input type=\"text\" name=\"name\"> ";
echo "Pass <input type=\"password\" name=\"pass\"><input type='submit' value=\"submit\" alt=\"login\" name=\"login\">";
echo "</form>";
}
else
{
echo "Welkom " . $user['name'] . "<a href=\"?action=logout\">uitloggen</a>";
}
?>
// footer (onderkant) van je layout
Voorbeeld: http://
Gesponsorde koppelingen
PHP script bestanden
Er zijn 49 reacties op 'Phpmysql inlog functie'
Om te reageren heb je een account nodig en je moet ingelogd zijn.
PHP hulp
0 seconden vanaf nu