Also you can give your fields names like field[] to make it an array in PHP instead of a bunch of name# combos that don't really tell you much. Also I suggest giving your fields meaningful names, as it is now if you put this away and came back in 3 weeks would you know what data to expect in any of those fields?
Also as suggested on the previous thread, that you linked to, you should use $POST / $GET as opposed to $REQUEST since request fills from those (as well as $COOKIE iirc) what happens if multiple keys are the same? How do you know which one you got with request? IE if I POST my name, and have a GET variable of your name, how does your code know which one you got if you use REQUEST?