you can use javascript to put the info into the next fields. you would just need to have an onChange or similar even to call your function that would:
document.form1.namefield2.value = document.form1.namefield1.value
make sense? I assume that this info has to be on the same page and that users can't press a button to view the next fields (else just $_post those values).