开发者

How do I input data into <input> form using PHP?

开发者 https://www.devze.com 2022-12-09 06:30 出处:网络
Okay, basically, I have a large list of phone numbers in a text file and I need to submit them all into a website by copy and pasting the phone number into the input form on the website and hit submit

Okay, basically, I have a large list of phone numbers in a text file and I need to submit them all into a website by copy and pasting the phone number into the input form on the website and hit submit. Now, how c开发者_开发知识库an I automate this using PHP? I have no access to the website with input form.


If the phone numbers are stored 1 per line in the file, you can use file() to open it and you'll have an array of phone numbers.

If they are stored some other way, you can use file_get_contents() and explode() the numbers into an array.

Loop over the array and use cURL to post the numbers to the website.


Loop through the text file and use Curl to fill in / submit the form?

http://www.askapache.com/htaccess/sending-post-form-data-with-php-curl.html

Sorry I'm not really a PHP coder...


If you're not tied to PHP, and can use Perl, use WWW::Mechanize.

http://search.cpan.org/dist/WWW-Mechanize/

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号