Why doesnt this work? I need it to start out at 1 instead of 0. And if I change $i to = 1 then it doesnt grab the first row.
http://www.mcregister.com/beta/test.php
<?php
if(isset($_POST['question'])) {
for ($i=0; $i<count($_POST['question']);$i++) {
$question=$_POST['question'][$i]."<br />"; echo "<b>Question $i:</b> $question";
}
}
?>
EDIT: Instead of starting out at 1.. I just need it to echo starting with "Question 1:" instead of "Question 0:".