I'm looking for a form submitter

B03S

Junior Member
Joined
Feb 23, 2008
Messages
110
Reaction score
19
Hi,

I have a txt file with 2000+ url's and am looking for a way to auto submit those via a html form on a website I do not control. User login to the site is required. Is there a tool that does this? :confused:
 
A custom site that uses a html form to add your link to it's db.
(it's a directory site)
I've added a few hundred links by hand.
(opening the submit page 10 times, enter 10 urls, press submit 10x... repeat..repeat..)

To be clear about the question:
I'm not looking to submit 1 link to 2000 sites but 2000 links to 1 site.
 
It is easy, have a look at Curl (post submit) and PHP on Google, here is a simple exemple :

PHP:
<?php
$postfields = array();
$postfields["action"] = "submit";
$postfields["name"] = "Tiger";
$postfields["email"] = "[email protected]";
$postfields["title"] = "My Title";
$postfields["url"] = "http://www.yoururltosubmit.com/";
$url = "http://www.urltosubmitto.com";
$useragent = "Mozilla/5.0";
$referer = $url; 
 
//Initialise une session CURL
$ch = curl_init($url);
//CURL options
curl_setopt($ch, CURLOPT_POST, 1);
//Post datas $postfields
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
//useragent here Mozilla/5.0
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
//referrer
curl_setopt($ch, CURLOPT_REFERER, $referer);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$result = curl_exec($ch);
curl_close($ch);
//echo $result;
?>

To login you need to use cookies, here is a little exemple :

-http://www.wagerank.com/2007/how-to-submit-forms-with-php/
 
use xrumer. Its a great tool and all you have to do is find the money and master the techniques for using it
 
Back
Top