Form action html to php -


i have

<form action = "https://creator.zoho.com/api/xml/fileupload/scope=creatorapi&authtoken=**************" method="post" enctype="multipart/form-data">                          <input type="text" name="applinkname" value="sample">     <input type="text" name="formname" value="employee">     <input type="text" name="fieldname" value="file_upload">      <input type="text" name="recordid" value="1235667754455">     <input type="text" name="filename" value="profile.jpg" >     <input type="file" name="file">     <input type="submit" value="update"> </form> 

but must send 2500 files, how can transform html php, problem <input type="file" name="file">, how convert give value in php ?

thanks you

you can use $_request['file']=$some variable; , name same use in database apply enctype="multipart/form-data".


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -