Am trying to get my PHP Loop to work but for some reason am not able to get it to work.. am only a bigginer Please Some1 help me fix the code!
*my Loop Should fill the Array with the numbers 1 through 100...
<?php
$Count=0;
While ($Count > 100) {
$Number[] = $Count;
++$Count;
foreach...