表单文件来源静态URL与不同的file upload

我有一个Excel工作表上传到我的服务器(我有url)。 与发送文件给大家然后下载,上传,然后运行…我想代码button来自动抓取文件的url。 有没有办法,我可以告诉它在哪里的文件的来源,然后使这个“提交”的一步过程,它抓住文件?

<div> <form enctype="multipart/form-data" method="post" name="upload_bulk_order_excel" id="upload_bulk_order_excel" action="bulk_order_summary.php" onsubmit="return check_excel_file();"> <table width="460"> <tbody> <tr> <td><div> <h3><span style="color:rgb(46, 144, 181); text-align:left">Step:</span> Browse <input accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" type="file" id="bulk_order_excel_file" name="bulk_order_excel_file" /> </h3> <h3><span style="color:rgb(46, 144, 181); text-align:left">Step:</span> Upload <input type="submit" name="form_upload_bulk_order" value="Upload File" style="width: 86px;" /> </h3> </div></td> </tr> </tbody> </table> </form> </div>