I'm learning PHP but it doesn't work. Do you guys know what's wrong with my code? http://h51116rm.informatica-laz.nl/PHP/Opdracht_182.php . This is my domain. The sentence is in Dutch so don't worry about that. The sentence in the array needs to pop up on the page.
<?php
$omwisselen = array("Peter ","is ","de ","broer ","van ","Hans ");
for ($i=0; $i<count($omwisselen); i++) {
echo $omwisselen[$i];
}
?>