> But of course I dont need to (and don't want to) put > the 'school' field on the form.
That's wise since it would constitute a possible security hole by doing so. > So question is how do I send the school value when > the submit button is pressed? This is an contradictive requirement compared to the previous one. You can not do it! Either you send the variable via the FROM with the HTML-tag HIDDEN (breaks first requirements), or you keep some kind of session state variables on the server side (breaks second requirments), but you can't do it both. It up to you wich one of the requriments you want to drop. ;) -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php