PHP beginner |
|
Nee. Het is ook nog eens flexibeler.
<?
$mission = array('Earn money by working',
'Complete a small crime successfully',
'Buy a bankcard');
//Zo kan je ze individueel tonen
echo $mission[0];
//En zo allemaal in een loopje:
foreach ($mission as $value) {
echo $value;
}
?>
<? $mission = array('Earn money by working', 'Complete a small crime successfully', 'Buy a bankcard'); //Zo kan je ze individueel tonen //En zo allemaal in een loopje: foreach ($mission as $value) { } ?>
|