How would I make two text boxes with two submit buttons? I need them side by side, and when you put something in one it shows up in the other after you click submit.
just use two different forms inside of two different table cells. Set the default values for the fields in form #2 to $_POST['fieldnamefromform1'].
I need the vice versa also, not just one way.
You mean, set the default values for the fields in form #1 to $_POST['fieldnamefromform2']?