Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
session_start();
if (!isset($SESSION["user_id"]))
{
header("Location:formular.php");
}
?>
if($SESSION['user_id'] != NULL)
if(empty($_SESSION['user_id']))
<?php session_start ();?>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="styles.css">
</head>
<body bgcolor="#FFFFFF">
<?php
if (isset ($_REQUEST["fehler"]))
{
echo "Ungültiger Login.";
}
?>
<form action="inc/login.php" method="post">
Benutzer:<br>
<input type="text" name="coname"><br>
Kennwort:<br>
<input type="password" name="pass" size="20"><br>
<input type="submit" value="Login" size="20"><br>
</form>
</html>
sorry ein Prob hab ich doch noch.
Ich hab die Datei formular.php per include in eine bereits bestehende seite eingebunden, quasi an der Quasi auf der Startseite unten links http://www.ot-batenbrock.de
PHP:<?php session_start ();?> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" href="styles.css"> </head> <body bgcolor="#FFFFFF"> <?php if (isset ($_REQUEST["fehler"])) { echo "Ungültiger Login."; } ?> <form action="file:///E|/Internet/XAMPP/xampp/xampp/htdocs/form/login.php" method="post"> Benutzer:<br> <input type="text" name="coname"><br> Kennwort:<br> <input type="password" name="pass" size="20"><br> <input type="submit" value="Login" size="20"><br> </form> </html>
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at E:\Internet\XAMPP\xampp\xampp\htdocs\OT\menue.txt:48) in E:\Internet\XAMPP\xampp\xampp\htdocs\OT\formular.php on line 1
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at E:\Internet\XAMPP\xampp\xampp\htdocs\OT\menue.txt:48) in E:\Internet\XAMPP\xampp\xampp\htdocs\OT\formular.php on line 1
line 1 wäre hier:
session_start();
Und dann diese Fehler erhalten könnt ihr da was mit anfangen?
gruß alex
session_start();
header("Location:formular.php");