1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
<?php /**API FOR 1MILLIONHITS.INFO,CREATED BY FRANKIE MILLER** **PROFILECRIB LTD FOR 1MILLIONHITS.INFO THIS API WILL** **ONLY WORK IF YOU HAVE AN ACCOUNT ON 1MILLIONHITS.INFO**/
/**API FOR ADDING WEBSITES TO 1MILLIONHITS.INFO VIA YOUR VERY OWN WEBSITE**/ //$url sets the website to send //$target sets the specific country you would like your people coming from //$uid is your unique user id //$custom function one_millionhits_api($url,$target,$uid){ //add to 1millionhits.info //this function sends website(links)to your account at 1 millionhits.info //super boost any website with quality visitors $metiny_url="http://1millionhits.info/api.php?add_link=$url&target_lan=$target&uid=$uid";//1millionhits.info api url $file = file_get_contents($metiny_url); echo $file; }
/**Settings**/ //or these varables can be set from a form $url="YOUR-URL-HERE";//url to add to the api call $target="en";//language to target traffic (all) for worldwide $uid="YOU-UNIQUE-ID-HERE";//REPLACE VAR WITH YOUR UNIQUE ID $custom="not set";//not needed /**end of settings**/
one_millionhits_api($url,$target,$uid);//Simple Usage
?>
|