Eu copiei um site usando o analisador simples do DOM:
<?php
include 'domparse.php';
$html = file_get_html('http://oceanofgames.com/rebel-galaxy-free-download/');
foreach($html->find('form[action="http://oceanofgames.com/Cloud-VPS-Download.php"]') as $element)
echo $element;
?>
E acabei com algo como:
<form action="http://oceanofgames.com/Cloud-VPS-Download.php" target="_blank" method="post">
<input type="hidden" name="filename" value="Rebel_Galaxy.zip" /><br />
<input type="hidden" name="filesize" value="2GB" /><br />
<input type="hidden" name="id" value="85.25.103.44" /></p>
<div align="center">
<input type="image" alt="Download" height="99" src="http://oceanofgames.com/wp-content/uploads/2013/09/button-download.png"width="184" />
</div>
</form>
Eu preciso fazer um servidor POST
para o servidor usando essas credenciais do formulário usando cURL
e não tenho ideia de como fazê-lo. Por favor me guie.