1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php $dir = "."; $sub_menu = "800200"; include_once($dir."/_common.php");
if($kw=='§all§'){ $sql = "delete from shop_keyword where 1=1 "; } else { $sql = "delete from shop_keyword where k_word = '{$kw}' "; } $res = mysql_query($sql,$connect_j3); if($res){ echo "OK"; } ?>
|