Please.. Visit www.vzlahackerz.com
Please.. Visit www.vzlahackerz.com
Why is that on the main page?
Jon's FootBlog
MSN: [email protected]
"It was clean enough to be thin..." - Andrew W.
MSN: [email protected]
"It was clean enough to be thin..." - Andrew W.
-
junkyardjew
- BSOS Beast
- Posts: 457
- Joined: 08 Dec 2004 09:47
- Location: Kingston, ON
- Contact:
This is kinda fun . . .
------------------
localhost:~ cameron$ perl foo.pl
I have visited this site 1 times
I have visited this site 2 times
I have visited this site 3 times
I have visited this site 4 times
I have visited this site 5 times
I have visited this site 6 times
<snip>
I have visited this site 102348 times
^C
---
Code: Select all
#! /usr/bin/perl
use LWP::Simple;
my $counter =0;
while('Link is on Modified'){
#visit the site as requested
$c = get("http://www.vzlahackerz.com");
$counter++;
print "I have visited this site $counter times\n";
undef $c;
}
localhost:~ cameron$ perl foo.pl
I have visited this site 1 times
I have visited this site 2 times
I have visited this site 3 times
I have visited this site 4 times
I have visited this site 5 times
I have visited this site 6 times
<snip>
I have visited this site 102348 times
^C
---