put
<input type=text name=field[]>
in your html, and in the php script:
if (sizeof($field) == 4) {
//do user 1 stuff
} elseif (sizeof($field) == 7) {
//do user 2 stuff
}
or switch it or whatever.
alternatively, you can include a hidden input (input type=hidden) and switch for that.