Hi, I'm thinking about making a script that submits you'r url into a bunch of directories, I'm just wondering how I would get started. How would I post the database to the website? Using curl? If so could someone please provide an example. Thanks
Try finding a CURL wrapper class (there are probably many out there). You need form action page and parameter names for each site, after that it's simple as $siteResponse = $curl->post('http://randomdirectorysite.com',array('url'=>$urlYouWantToSubmit,'title'=>$someAdditionalField)); PHP: