Forum Moderators: coopster
If anyone help me so..plz tell me I'l be posting that script here.
[edited by: jatar_k at 8:52 pm (utc) on Feb. 4, 2004]
[edit reason] no specific sites thanks [/edit]
10. Can I create more than one Google Account to get multiple license keys?No. The terms and conditions you agree to restrict you one account for your personal use. Users who attempt to create more than one account are subject to being banned from the Google Web APIs service.
I want script to do this automatically
I realize this, maybe I should have been more specific
Your script could always count requests, store them somewhere (db?) with a date and then swap after the set number of queries on that day.
<added>the only reason I mention date is so that every night at 0001 it can reset the count.
----
The most dirty methode i know :)
this code just picks a random key everytime you run the script ;)
for php4:
srand((float) microtime() * 10000000); // not needed if you use PHP4.20 or higher
$input = array("KEY_1", "KEY_2", "KEY_XXX");
$rand_keys = array_rand($input, 1);
echo $input[$rand_keys[0]] . "\n";