|
To display the output as the user is typing, you're right, AJAX would be best. Otherwise, each keystroke would be a page reload and that would be tedious.
To make the form longer, just continue to give the inputs unique names, and they will still be accessible through $_POST...if it's really long, you could even throw it into a loop, just like you would with any other array.
|