hiddenpremise macrumors regular Original poster Jul 25, 2008 163 0 Somewhere between my imagination and reality May 31, 2009 #1 I am trying to upload a sqlite3 database. What Content-Disposition: should I to be able to access the database through the $_FILES[] env var in php? I have tried "form-data", but that just posts it to a POST and REQUEST var. I am so lost...
I am trying to upload a sqlite3 database. What Content-Disposition: should I to be able to access the database through the $_FILES[] env var in php? I have tried "form-data", but that just posts it to a POST and REQUEST var. I am so lost...
K kainjow Moderator emeritus Jun 15, 2000 7,958 7 Jun 1, 2009 #2 This is the string format I used for file uploads which has worked. Code: @"Content-Disposition: form-data; name=\"%@\"; filename=\"%@\"\r\n\r\n"
This is the string format I used for file uploads which has worked. Code: @"Content-Disposition: form-data; name=\"%@\"; filename=\"%@\"\r\n\r\n"