1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<? require "../inc/db_connet.php";
$u_query = "select hit from ware where w_large = '$cat_down'"; $u_result = mysql_query($u_query); $u_row = mysql_fetch_row($u_result); $ref_hit = $u_row[0] + 1; $u_c_query = "update ware set hit ='$ref_hit' where w_large ='$cat_down'"; $u_c_query = mysql_query($u_c_query);
echo ("<meta http-equiv='refresh' content='0; url=../inc/download.php?'>"); ?>
|