-
Notifications
You must be signed in to change notification settings - Fork 0
/
offerwalls.php
executable file
·129 lines (94 loc) · 4.78 KB
/
offerwalls.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
include('./requiert/new-form/header.php');
$meta_title = 'Quizzdeal.fr : Les offerwalls';
$meta_description = '';
if (!isset($_SESSION['id'])) { header('Location: /connexion.php'); exit(); }
?>
<style type="text/css">
ul{
list-style-type: none;
}
.wrapper-content{margin-top: 70px;}
.cat-box-content{
padding:20px;
}
.cat-head{
background: #f74265;
color: #fff;
padding: 7px 15px;
font-size: 16px;
border-radius: 6px 6px 0 0;
}
.item-coupon{
border: 1px solid #80808036;
border-radius: 25px;
}
.coupon-box-img{
height: 70%;
margin-bottom: 0;
width: 100%;
padding-left: 0;
padding-right: 0;
display: flex;
align-items: center;
justify-content: center;
}
.btn-offerwalls{
width: 100%;
background: #e9e9e9!important;
color: #000!important;
}
.btn-offerwalls{margin-bottom: 4px;}
.btn-offerwalls:hover, .btn-offerwalls.active{background: #f74265!important;color: #fff!important}
</style>
<!-- SECTION HEADLINE -->
<section class="container-content">
<h1 class="title-page">Cashback</h1>
<div class=" wrapper-content">
<div class="m-auto content p-40-20">
<p>Gagnez de l'argent en participant à nos différentes missions ! L'argent sera crédité sur votre compte immédiatement après votre participation.</p>
<div>
<div class="bg-light-grey b-r-10 p-20 b-special-grey">
<?php if (isset($_GET['ow'])) : ?>
<?php $nameOfferwall = htmlentities($_GET['ow']);
$hashId = $mbreHashId . '-' . date('YmdH');
?>
<?php if ($_POST['ow'] == 'offertoro'): ?>
<iframe src="https://www.offertoro.com/ifr/show/19324/<?= $hashId; ?>/7155" frameborder="0" width="100%" height="700px"></iframe>
<?php elseif ($_GET['ow'] == 'adscendmedia'): ?>
<iframe src="https://adscendmedia.com/adwall/publisher/110911/new/profile/13208?subid1=<?= $hashId; ?>" frameborder="0" width="100%" height="700px"></iframe>
<?php elseif ($_GET['ow'] == 'kiwiwall'): ?>
<iframe src="https://www.kiwiwall.com/wall/YKDHIm3WzFwpKtrWTxeVpiAacPlUjZoQ/<?= $hashId; ?>" frameborder="0" width="100%" height="700px"></iframe>
<?php elseif ($_GET['ow'] == 'wannads'): ?>
<iframe src="https://wall.wannads.com/wall?apiKey=5d446e6ca96de949432700&userId=[<?= $hashId; ?>" frameborder="0" width="100%" height="700px"></iframe>
<?php elseif ($_GET['ow'] == 'adworkmedia') : ?>
<iframe src="http://lockwall.xyz/wall/5lH/<?= $hashId; ?>" frameborder="0" width="100%" height="700px"></iframe>
<?php elseif ($_GET['ow'] == 'ptcwall'): ?>
<iframe src="http://www.ptcwall.com/index.php?view=ptcwall&pubid=gxqb86469i36vh966z&usrid=<?= $hashId; ?>" width="100%" height="700px" frameborder="0" scrolling="auto"></iframe>
<?php elseif ($_GET['ow'] == 'personaly'): ?>
<iframe src="https://persona.ly/widget/?appid=91600366dbf74a5808b266c87c32313f&userid=<?= $hashId; ?>" width="100%" height="700px" frameborder="0" scrolling="auto"></iframe>
<?php elseif ($_GET['ow'] == 'superrewards'): ?>
<iframe src="https://wall.superrewards.com/super/offers?h=uebrmznlgmm.682401188058&uid=<?= $hashId; ?>" width="100%" height="700px" frameborder="0" scrolling="auto"></iframe>
<?php elseif ($_GET['ow'] == 'clixwall'): ?>
<iframe src="http://www.clixwall.com/wall.php?p=BFXV1-PNF36-RRX05&u=<?= $hashId; ?>" width="100%" height="700px" frameborder="0" scrolling="auto"></iframe>
<?php elseif ($_GET['ow'] == 'offerwolf'): ?>
<iframe src="https://ads.offerwolf.com/wall/?idUser=112&appId=72&subid=<?= $hashId; ?>" width="100%" height="700px" frameborder="0" scrolling="auto"></iframe>
<?php elseif ($_GET['ow'] == 'ayetstudios'): ?>
<iframe src="https://www.ayetstudios.com/offers/web_offerwall/1068/default_adslot?external_identifier=<?= $hashId; ?>" width="100%" height="700px" frameborder="0" scrolling="auto"></iframe>
<?php elseif ($_GET['ow'] == 'adgem'): ?>
<iframe src="https://api.adgem.com/v1/wall?appid=956&playerid=<?= $hashId; ?>" width="100%" height="700px" frameborder="0" scrolling="auto"></iframe>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</section>
<?php include('./requiert/new-form/footer.php'); ?>
<script type="text/javascript">
$( window ).on( "load", function() {
$('.dashboard-nav ul li').removeClass('active');
$('.dashboard-nav ul li.li-offerwall').addClass('active');
$('.dashboard-nav-inner').scrollTop(500);
});
</script>