|
Posted by Bert Apperlo on 01/19/06 15:06
Hi,
I have just started to work with sessions, but it won't work. The code I
have is:
index.php:
<?php
session_start();
$_SESSION['var_waarde'] = "Gewoon een waarde";
echo "<a href=\"vervolg.php\">Continue</a>";
?>
vervolg.php:
<?php
session_start();
echo "De waarde van de 'var'-variabele: " .
$_SESSION['var-waarde'];
?>
I have been searching for a solution, but until now I haven't found
anything. Does someone here now what the problem is. O yeah, I'm running
php5.1.1
Thnx already!
Navigation:
[Reply to this message]
|