Gebts zu ihr wisst es nicht:
Das ist doch wohl mal das komplizierteste von allen:
foreach ($HTTP_GET_VARS as $key => $value) {
echo "Schlüssel: $key; Wert: $value<br>\n";
}
ich löse auf (es war nur ein test):
<?php
$i =lo;
$line = "hal".$i;
$$line = 'so gehts !';
print "i= $i<br>";
print "line= $line<br>";
print "lline= $$line<br>";
print "hallo= $hallo<br>";
?>
ausgabe:
i= lo
line= hallo
lline = $hallo
hallo = so gehts !
!!!!!!!