form-data

Receiving multipart POST data requests in PHP

I want to receive the following HTTP request in PHP: Content-type: multipart/form-data;boundary=main_boundary --main_boundary Content-type: text/xml <?xml version='1.0'?> <content> Some content goes here </content> --main_boundary Content-type: multipart/mixed;boundary=sub_boundary --sub_boundary Content-type: application/octet-s...

Using Python Web GET data

I'm trying to pass information to a python page via the url. I have the following link text: "<a href='complete?id=%s'>" % (str(r[0])) on the complete page, I have this: import cgi def complete(): form = cgi.FieldStorage() db = MySQLdb.connect(user="", passwd="", db="todo") c = db.cursor() c.execute("delete from tasks...

VB.NET - multipart form upload not working. What's wrong?

I tried searching and found out that someone has written a multipart form uploader. Though it had one thing wrong: It transfered all the - supposedly - POST values in the url.. Which the web application doesn't like - somehow. It went all POST /index.php?page=post&s=add&title=test&tags=testtags HTTP/1.1 And only added the file into...

How do i make form data not disappear after hitting refresh?

I went to test my page on another browser. On google chrome i can fill out a form, hit back and forward and still have the data there. Now i need to refresh the page so certain data is correct (such as session id if the cookie expires or user logs out before submitting). I refresh and lose all data. Is there some option i can set so all ...

Don't save form data over https

I'd like to submit data in a form, over HTTPS, without allowing the browser to save it. (credit card transactions) ...

validation in php

i have a submit page in html. when i submit the form data, it goes to a php page, which inserts the data in the database. my question is how would i ensure that the data on the html page is not null or empty without using javascript? is there anyway this could be done in php? thanks! ...

Delete certain form data (Selectively) on IE8 or Firefox

I would like to delete certain autocomplete suggestions (from history) on form data on IE8 (as well as in firefox). on the username of a webpage I mistyped my userid and it is coming every time I try to type my name. The autocomplete gives two items one my right id and second the wrong id which I did once in the past How do I selectiv...

Oracle Forms 10 auto save form data

He is there a function or setting which automaticly save's the form's data when a user forgot to press save? Like Word has? ...