Hello, I've got this little code bit I'm working on. The $_POST variable is user1, but I want it to be user(and then whatever $i is).
$respArray = array();
for ($i = 1; $i <= $count; $i++)
{
$respArray[$i] = strip_tags($_POST['user1'], '');
echo "$respArray[$i]";
echo "<br>";
}
Any ideas how to do that? I just tried doing user$i, figured it wouldn't work, and was right. Thanks.