Jump to content

Auto-post data to .do


dotkpay

Recommended Posts

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

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).

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.