Login-Probleme

:rolleyes:
Jetzt überlege doch mal, was du da machst:
PHP:
$_SESSION['e'] = $test;
:rolleyes: Wird da $test ein Wert zugewiesen? :rolleyes:
 
:rolleyes:
Jetzt überlege doch mal, was du da machst:
PHP:
$_SESSION['e'] = $test;
:rolleyes: Wird da $test ein Wert zugewiesen? :rolleyes:

Danke sehr,
Der Code geht jetzt.

Code:
<?php
session_start();


 $_SESSION['e'] = 'g' ;


?> <!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
    <a href="z.php">z </a>
</body>
</html>

z.php:

Code:
<?php
session_start();


    
    
 ?>
 <!DOCTYPE html>
 <html>
 <head>
     <title></title>
 </head>
 <body>b
     <?php print($_SESSION['e']) ;?>
 </body>
 </html>
 
Und so ist es besser:
PHP:
<?php
   session_start();
 
   $output = isset($_SESSION['e']) ? $_SESSION['e'] : 'Session-Variable nicht gesetzt';
 ?>
 <!DOCTYPE html>
 <html>
 <head>
     <title></title>
 </head>
 <body>b
     <?php print($output) ;?>
 </body>
 </html>
 
Zurück