và bây giờ là hướng dẫn
Tải tập files dưới về và giải nén sau đó chép 3 tập tin .php vào thư mụcforum/includes
Tiếp đến
<?php
ALTER TABLE `cms_forum_files` ADD `cost` INT(40) NOT NULL DEFAULT '0', ADD `id_up` INT(10) NOT NULL
?>Mở tập tinforum/index.php
Tìm trong đó đoạn này
<?phpif (in_array($att_ext, $pic_ext)) {
echo '<div><a href="index.php?act=file&id=' . $fres['id'] . '">';
echo '<img src="thumbinal.php?file=' . (urlencode($fres['filename'])) . '" alt="' . $lng_forum['click_to_view'] . '" /></a></div>';
} else {
echo '<br /><a href="index.php?act=file&id=' . $fres['id'] . '">' . $fres['filename'] . '</a>';
}
echo ' (' . $fls . ' кб.)<br/>';
echo $lng_forum['downloads'] . ': ' . $fres['dlcount'] . ' ' . $lng_forum['time'] . '</span>';
$file_id = $fres['id'];
}?>Sau đó thay thế thành
<?php
$req99=mysql_query("SELECT `balans`, `id` FROM `users` WHERE (id='$user_id') ");$arr99=mysql_fetch_array($req99);$req43=mysql_query("SELECT `postforum`, `id` FROM `users` WHERE (id='$user_id') ");$arr56=mysql_fetch_array($req43);$total_spent = 2;$hammad= 3 - $arr56['postforum'];
echo '<small>';
if (in_array($att_ext, $pic_ext)) {
echo '<div><a href="index.php?act=file&id=' . $fres['id'] . '">';
echo '<img src="thumbinal.php?file=' . (urlencode($fres['filename'])) . '" alt="' . $lng_forum['click_to_view'] . '" /></a></div><br/>';
} else if($fres['cost'] > $arr99['balans']){
echo ' <font color="red">Không đủ tiền</font><br/>';
}
else if (empty($user_id)){
echo '<b>Bạn cần <a href="../login.php">đăng nhập</a> mới tải được tập tin đính kèm</b>';
}else if($total_spent < $arr56['postforum']){
echo '<a href="index.php?act=file&id=' . $fres['id'] . '">' . $fres['filename'] . '</a>';
}
else {
echo '<b>Bạn vui lòng đăng đủ 3 bài viết để tải tập tin đính kèm</b>';
}
echo ' (' . $fls . ' KB.)<br/>';
echo 'Giá: '.$fres['cost'].' VND<br/>';
echo $lng_forum['downloads'] . ': ' . $fres['dlcount'] . ' ' . $lng_forum['time'] . '</span>';$file_id = $fres['id'];
echo '</small>';
echo '</div>';
}?>
Tải Tệp Tin
Tập tin đính kèm:
No comments:
Post a Comment