I want to post all text box responses to results.php and then randomly choose one of the responses to display.
the form:
<form action="results.php" method="post">
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input type="submit" value="Submit" />
the php contents (obviously wrong, but something like this?)
foreach ($_POST['friend'] as $value) {
if ($value) {
echo mt_rand($value);
}
}