This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
86 lines (78 loc) · 2.18 KB
/
index.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
function baglan($url, $ref = false)
{
if (!$ref) {
$ref = $url;
}
$ch = curl_init();
$timeout = 0;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_REFERER, $ref);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$veri = curl_exec($ch);
curl_close($ch);
return $veri;
}
?>
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dolor Bot</title>
<link type="text/css" rel="stylesheet" href="css/responsive-tabs.css" />
<link type="text/css" rel="stylesheet" href="css/style.css" />
<!-- jQuery with fallback to the 1.* for old IE -->
<!--[if lt IE 9]>
<script src="js/jquery-1.11.0.min.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="js/jquery-2.1.0.min.js"></script>
<!--<![endif]-->
<script src="js/jquery.responsiveTabs.js" type="text/javascript"></script>
<script src="js/function.js" type="text/javascript"></script>
</head>
<body>
<div id="main">
<div id="header">
<div class="logo">
<a href="index.php"><img src="images/logo.png" alt="logo" /></a>
<h1>Dolor Bot</h1>
</div>
</div>
<div class="clear"></div>
<div id="horizontalTab">
<ul>
<li><a href="#tab-1">Bot Panel</a></li>
</ul>
<div id="tab-1">
<form action="cek.php" enctype="multipart/form-data" method="POST">
<b>Sayfa Başlangıç</b><br>
<select name="sayfa">
<?php
for ($i = 1; $i <= 1000; $i++) {
echo '<option value="'.$i.'">'.$i.'</option>';
}
?>
</select>
<br>
<b>Sayfa Son</b><br>
<select name="sayfab">
<?php
for ($i = 1; $i <= 1000; $i++) {
echo '<option value="'.$i.'">'.$i.'</option>';
}
?>
</select>
<br>
<br>
<input type="submit" name="gonder" class="submit" value="Çekim Başlasın!">
</form>
</div>
</div>
</div>
</body>
</html>