• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Mod Ảnh đại diện cho MTBlog

Admin

Well-Known Member
Staff member
Administrator
Tự nhiên MTB hot, nên hum nay ngồi nghịch share ae chơi. Trong code có chú thích cho dễ hiểu
-- Bắt đầu nhé --
1. Tạo file update.php với nội dung sau
PHP:
<?php
error_reporting(0);
include_once('b_inc/db.php');
include_once('b_inc/fun.php');
include_once('b_inc/tren.php');
/* thêm cột anh vào sau cột tieude  */
mysql_query("ALTER TABLE `blog` ADD `anh` varchar(200) AFTER `tieude`");
echo 'install thành công!';
include 'b_inc/duoi.php';
?>
xong. Chạy đường dẫn http://tenmien/update.php
chạy xong xoá luôn file đấy đi :D
2. Mở file index.php
Tìm đoạn code sau:
PHP:
$b=mysql_query("select * from blog where tt= '1' order by id desc limit $j, $show;");
while($v=mysql_fetch_array($b)){
thêm vào sau đó:
PHP:
if (isset($v['anh'])) { $uanh = $v['anh']; }
else {
$uanh = 'http://jin9x.info/img/koanh.jpg'; 
//Link ảnh mặc định
}
Ngay sau code bạn vừa thêm có đoạn code sau:
PHP:
$tp->div('list', '» '.b_link('blog/blog-'.$v['url'].'.html', '<b>'.$v['tieude'].'</b>').'<br>
thêm vào sau đó
PHP:
<img src="'.$uanh.'" alt="Ảnh đại diện" height="50" width="42" /><br/>
lưu và đóng lại
3. Mở file blog/index.php
Tìm
PHP:
$b=mysql_query("select url, tieude, noidung from blog where idm='{$m['id']}' and tt= '1' order by id desc limit $j, $show;");
Sửa thành
PHP:
$b=mysql_query("select url, tieude, noidung, anh from blog where idm='{$m['id']}' and tt= '1' order by id desc limit $j, $show;");
Làm các bước tiếp theo giống phần 2.
4. Mở admin/blog.php
Tìm
PHP:
$url = seo($tieude);
mysql_query("UPDATE `blog` SET `comment` = '$comment', `url` = '$url', `noidung` = '$noidung', `tieude` = '$tieude', `idm` = '{$_POST['theloai']}' where id='{$_GET['id']}'");
Sửa thành
PHP:
$url = seo($tieude);
mysql_query("UPDATE `blog` SET `comment` = '$comment', `url` = '$url', `noidung` = '$noidung', `tieude` = '$tieude', `idm` = '{$_POST['theloai']}', `anh` = '{$_POST['anh']}' where id='{$_GET['id']}'");
Tìm tiếp
PHP:
&bull;Thể Loại: *<br><select name="theloai"><option value="'.$ar['idm'].'">Không đổi</option>';
Thêm vào TRƯỚC nó.
PHP:
&bull;URL ảnh đại diện: *<br/><textarea cols="20" name="anh" rows="1"/>'.$ar['anh'].'</textarea><br>
Tìm
PHP:
$url = seo($tieude);
mysql_query("INSERT INTO `blog` SET `comment` = '$comment', `url` = '$url', `noidung` = '$noidung', `tieude` = '$tieude', `thoigian` = '".date("d,m,y -H:i")."', `time` = '".time()."', `idm` = '{$_POST['theloai']}'");
sửa thành
PHP:
$url = seo($tieude);
mysql_query("INSERT INTO `blog` SET `comment` = '$comment', `url` = '$url', `noidung` = '$noidung', `tieude` = '$tieude', `thoigian` = '".date("d,m,y -H:i")."', `time` = '".time()."', `idm` = '{$_POST['theloai']}', `anh` = '{$_POST['anh']}'");
Tìm tiếp
PHP:
&bull;Thể Loại: *<br><select name="theloai"><option value="">Chọn Một</option>';
Thêm vào trước nó:
PHP:
&bull;URL ảnh đại diện: <br/><textarea cols="20" name="anh" rows="1"/></textarea><br>
Lưu và đóng lại.
-- Hết --
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top