Skip to content

Commit

Permalink
Merge pull request kokonior#627 from dian003/patch-1
Browse files Browse the repository at this point in the history
Autivisitor
  • Loading branch information
kokonior authored Oct 29, 2021
2 parents 1d278a1 + 269a660 commit ac5ea9f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Kikoy
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<title>Auto Visitor</title>
<form method="GET">
<input type="text" name="url" value="URL Mu...">
<input type="max" name="max" value="Maksimum">
<input type="submit">
</form>

<?php
if (!$_GET) die();
require("autovisitor.class.php");

/*
* Script by Alal
* http://www.blogalal.com
*/

/*
* Apabila tidak menggunakan form
* $url = "http://www.blogalal.com/2015/04/showcase-paypal-email-validity-checker.html";
* $max = 100;
*/

/* Menggunakan form */
$url = $_GET["url"]; //URLnya
$max = $_GET["max"]; //Maksimum visitor yang dikirim

for($i = 1; $i < $max+1; $i++) {
$class = new autovisitor($url);
echo $i.". SUKSES - [".$class->jalankan()."]<br>";
}
?>

0 comments on commit ac5ea9f

Please sign in to comment.