Hi,
I've got a web project where my users signup at a url like:
www.mysite.com/signup/index.jsp
after the user signs up, I show them another page where they can submit a user photo if they want. But my user photos are going to be hosted at another domain I own - is it possible to post a form to another domain? Like the page they land at is here with the following form:
<!--
www.mysite.com/signup/photo.jsp
-->
<form method="POST" action="http://www.myothersite.com/photo.php" >
</form>
I'd ideally like to get the image the user selects to just go to my other domain, where I'll host it statically. Not sure if something like this is possible due to browser restrictions,
Thanks