TimX
Besthakker, # Besthakker (04.03.2020 / 02:10)
Bosh sahifada videolardi chiqargandan keyin tagidan categoriyasiniham chiqadigan kod kimda bor
Shu kodni sinab ko'ring:
Kod · PHP25 qator
$cat = intval($_GET['cat']);



$cat_inf = mysql_query("SELECT * FROM `downpath` WHERE `id` = '" . $cat . "' LIMIT 1");



if(mysql_num_rows($cat_inf)){

    $cat_inf = mysql_fetch_assoc($cat_inf);

}else{

    $cat_inf = array('way' => '');

}



$totalfile = mysql_result(mysql_query("SELECT COUNT(*) FROM `downfiles`  WHERE `type` != 1 AND `status` = 1 && `way` LIKE '" . $cat_inf['way'] ."%'"), 0);

if($totalfile > 100){ $totalfile = 100; }

$zap = mysql_query("SELECT * FROM `downfiles` WHERE `type` != 1 AND `status` = 1 && `way` LIKE '" . $cat_inf['way'] ."%' ORDER BY `time` DESC LIMIT " . $start . "," . $kmess);