View file wap/bdownload.php

File size: 862B
<?php
#######################################
# RemiXchaT.CoM Version 1.0           #
# Author: Rana Ahamed                 #
# RemiXchaT.CoM                       # 
# Ranabdboy@gmail.com                 #
#######################################
 include("inc/func.inc.php");
 db();

$id = $_GET['id'];
$action = $_GET["action"];
$hits = $_GET["hits"];
$type = $_GET["type"];
// Open data file
 if($type=='1')
 {
 $downloads = mysql_fetch_array(mysql_query("SELECT download, imageurl FROM mx_blog WHERE id='".$id."'"));
 }else if($type=='2')
 {
 $downloads = mysql_fetch_array(mysql_query("SELECT download, itemurl FROM mx_blog WHERE id='".$id."'"));
 }
 $incresedownload = $downloads[0] + 1;
 mysql_query("UPDATE mx_blog SET download='".$incresedownload."' WHERE id='".$id."'");
 $url = $downloads[1];
 header("Location: $url");

?>