1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php include("./_common.php");
$sql = "delete from shop_skin_show where 1=1"; //@mysql_query($sql,$connect_j3);
$f = fopen("./sql/".$file_name,"r"); $cnt = 0; while($sql = fgets($f,40960)){ @mysql_query($sql,$connect_j3); $cnt++; }
echo "OK";
?>
|