simply click and she goes.
The ones out there now are sending urls to spammers, and emails to spammer companies.. When you do a website for someone and 3 weeks later they say the mail is discusting, repetitive they dont know whats business and whats junk. I just want to make my own private and control the places it submits too. Without giving some third party my clients new url and email address.
This works but ONLY on the last entry.. so say 10 in DB.. it only visits the 10th. Ive read some "array" threads but just need a tiny tiny bit of help on what I may be doing wrong.
thanks!
<?php
$sql = mysql_query("SELECT domainonly FROM urlsubmitdb");
while($line = mysql_fetch_assoc($sql)){
$domainonly[] = $line;
}
foreach($domainonly as $e){
$d = 'http://www.';
$f = '/blabla=123&blabla=submitexamplelink';
$e = $e['domainonly'];
$g = "$d$e$f";
header('location:'.$g);
usleep(3000000); // 3000000 wait for 3 seconds
?>
Cant be all that bad code, the lights are still on in Manhatten!
Edited by 0o0o0, 31 January 2013 - 05:57 PM.












