You answer gives what I don't want - a double answer.
I'd like to have results from a form spit out. There's TWO arrays in the form, and each one needs it's own variable.
The only way I can think of is by doing a foreach with two statements in it, which is why I posted here, because I'm pretty sure there's gotta be a REAL way to do it that's actually pretty simple.
My output is going to be something like:
foreach($POST['one'] as $var1 && $POST['two'] as $var2) {
echo ' I like $var1 and $var2';
}
I hope that clears it up for what I'm trying to do.