I have made a script that redirect a user to the page related to the month.
I bind the month numbers to the url as uitrukken.php?m d=05
Now....i would print the month name on my page. I have made the following
array.
<?PHP
$maanden = array(
01 => "Januari",
02 => "Februari",
03 => "Maart",
04 => "April",
05 => "Mei",
06 => "Juni",
07 => "Juli",
08 => "Augustus",
09 => "September" ,
10 => "Oktober",
11 => "November",
12 => "December"
);
echo $maanden['$md'];
?>
Why doen't show dis the month. In which format can i use a array with a
variabele as echo $maanden['$md'];
FiremanSAM
I bind the month numbers to the url as uitrukken.php?m d=05
Now....i would print the month name on my page. I have made the following
array.
<?PHP
$maanden = array(
01 => "Januari",
02 => "Februari",
03 => "Maart",
04 => "April",
05 => "Mei",
06 => "Juni",
07 => "Juli",
08 => "Augustus",
09 => "September" ,
10 => "Oktober",
11 => "November",
12 => "December"
);
echo $maanden['$md'];
?>
Why doen't show dis the month. In which format can i use a array with a
variabele as echo $maanden['$md'];
FiremanSAM
Comment