If you specify site2 in the action of your form tag, yes.
Hmm, I think what imagefree is getting at is that while you can do this with form submissions, you have to be aware of exactly what information is transmitted between servers.
So, basically ONLY things which are sent directly with the form are available - ie things you access with $_POST['VarNameHere'].
Anything like $_SESSION session variables will not be transfered because these are for use by the local server only.
yup u can post values from form on one site to a php script on a different server....u surely can!!!