<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.nambahfollowers.com/submit.php");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
$data = array( 'follow' => '204793404' );
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
?>