forked from blondishnet/PHPads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.php
24 lines (22 loc) · 813 Bytes
/
html.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
require './ads.php';
///////////////////////////////////////
// Don't Edit Anything Below This Line!
///////////////////////////////////////
if (!isset($_GET['id']) || !preg_match('/^[A-Za-z0-9 ]+$/', $_GET['id'])) {
$_GET['id'] = null;
}
if (!isset($_GET['width']) || !preg_match('/^[0-9]+$/', $_GET['width'])) {
$_GET['width'] = 0;
}
if (!isset($_GET['width']) || !isset($_GET['height']) || !preg_match('/^[0-9]+$/', $_GET['height'])) {
$_GET['height'] = 0;
}
$buttons = new bannerAds($_GET['id'], 1, $_GET['width'], $_GET['height']);
if($buttons && strlen(trim($buttons->ad[0])) )
{
echo "<html><body style=\"margin:0; padding:0\">" .$buttons->ad[0]. "</body></html>";
} else {
echo "<html><body style=\"margin:0; padding:0\">" .$bannerAds['default_display']."</body></html>";
}
?>