i've got a script that allow user to upload file and it work well.
little question.
i've got a page name upload.php with the form to upload file ... and the form tag look like this :
<form name="creation" action="upload.php" method="post" enctype="multipart/form-data" onSubmit="return checkFill()">
so as you can see, the form action is the same page.
Is it posssible, for exemple to upload from another page :
<form name="creation" action="submit.php" method="post" enctype="multipart/form-data" onSubmit="return checkFill()">
??