PHP ver gevorderde |
|
<? // we like the colors
$id = $_GET['id']
$id = $_SESSION['id']
<? // we like the colors $id = $_GET['id'] $id = $_SESSION['id']
waarom zou ja dan doen?
dat is het zelfde als
<? // we like the colors
$a = 2;
$b = $a;
echo $b;
<? // we like the colors $a = 2; $b = $a;
nuttig? nee...
als je gewoon die $_GET enz zou gebruiken is je probleem opgelost
is waarschijnlijk doordat register_globals aan staat |