dotkpay Posted October 16, 2011 Share Posted October 16, 2011 Hello, I need to post plenty of data to a file with a java file with a .do extension using a php program. How do I get to auto-post mass data in php from a database straight to this java file? Put in mind that each mysql record is posted as its own form as in: <form ...>mysql record</form> Thanks in advance Link to comment https://forums.phpfreaks.com/topic/249222-auto-post-data-to-do/ Share on other sites More sharing options...
jcbones Posted October 16, 2011 Share Posted October 16, 2011 Are you talking XML, because PHP doesn't send FORMS, only POST or GET. PHP has a POST_MAX_SIZE limit in it's php.ini, so there is a limitation that you can send TO PHP. But, you are sending to a java file, and I'm not sure about that one. To POST data without a form, you would use cURL functions, but that still wouldn't put it in a <form>...</form> setting, but rather in the POST array (like all other POST data is sent). Link to comment https://forums.phpfreaks.com/topic/249222-auto-post-data-to-do/#findComment-1279827 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.