File size: 2.82Kb
<?php
session_start();
$id=$_GET['id'];
$pid=$_SESSION['pid'];
include 'config.php';
$sql="select * from aid where pid='$pid' and aid='$id' limit 1";
$result=$mysqli->query($sql);
if($result->num_rows>0){
} else{
exit('No compaign exit');
}
if(!$_POST['submit']) {
?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="pragma" content="no-cache" />
<meta name="keywords" content="mobile advertising, mobile ads, mobile advertising company, advertising campaign, free traffic, free advertising">
<meta name="description" content=", provides you to advertise your wapsite for free.. Site owners can advertise their sites at affordable costs. And that cost is nothing. You just share your users with other site owners who in return provide you their visitors. .">
<title>Ad Campaigns</title>
<link rel="stylesheet" href="style.css" type="text/css" media="handheld,screen"/>
</head><body id='top'>
<div class='main'>
<div class='head'>Ad Campaigns<br />
<b>Delete Ad Compaigns</b></div>
<div class='hello'>Hello ,<font color=red><b><?php echo $_SESSION['username']?></b></font> | <a href='logout.php/'>Logout</a></div><div class='form'>
<form action="<?php echo basename(__FILE__).'?id='.$_GET['id']?>" method='post'>
<input type="submit" name='submit' value='Delete ad ?' />
</form>
</div>
<div class='dashlink'><a href='managesite.php'>Created ads</a></div>
<?php include'footer.php' ?>
</div>
</body></html>
<?php } else {
$id=$_GET['id'];
$sql="delete from aid where aid=$id";
if($mysqli->query($sql)===true){
?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="pragma" content="no-cache" />
<meta name="keywords" content="mobile advertising, mobile ads, mobile advertising company, advertising campaign, free traffic, free advertising">
<meta name="description" content=", provides you to advertise your wapsite for free.. Site owners can advertise their sites at affordable costs. And that cost is nothing. You just share your users with other site owners who in return provide you their visitors. .">
<link rel="stylesheet" href="style.css" type="text/css" media="handheld,screen"/>
<title>Delete Link</title>
</head><body id='top'>
<div class='main'>
<div class='head'>Delete Link</div><div class='random'>Successfully Deleted Campaign! </div>
<?php include'footer.php'?>
</div>
</body></html>
<?php
} else{
echo 'ERROR: database problem please contact administrator';
}
} ?>