I am developing a typical user profile page where among other things I have the dilemma of uploading a profile picture. In addition there is data that goes through a "post" action to another php file where it processes the information. Now, it turns out that I found a tool called jcrop and that is with which a photograph is cut out. I would like the user to enter only cropped photos. But behold, that tool jcrop has its own post method that is to say it has its own form ... the question is, if I have this structure:
<form action="actualizar.php" method="post">
(ACA IRIA TODOS LOS INPUT)
<form action="crop.php" method="post">
(ACA IRIAN LOS CAMPOS QUE NECESITO PARA RECORTAR LA IMAGEN)
</form>
</form>
Can it be done?