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
xong. Chạy đường dẫn http://tenmien/update.php
chạy xong xoá luôn file đấy đi
2. Mở file index.php
Tìm đoạn code sau:
thêm vào sau đó:
Ngay sau code bạn vừa thêm có đoạn code sau:
thêm vào sau đó
lưu và đóng lại
3. Mở file blog/index.php
Tìm
Sửa thành
Làm các bước tiếp theo giống phần 2.
4. Mở admin/blog.php
Tìm
Sửa thành
Tìm tiếp
Thêm vào TRƯỚC nó.
Tìm
sửa thành
Tìm tiếp
Thêm vào trước nó:
Lưu và đóng lại.
-- Hết --
-- 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';
?>
chạy xong xoá luôn file đấy đi
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)){
PHP:
if (isset($v['anh'])) { $uanh = $v['anh']; }
else {
$uanh = 'http://jin9x.info/img/koanh.jpg';
//Link ảnh mặc định
}
PHP:
$tp->div('list', '» '.b_link('blog/blog-'.$v['url'].'.html', '<b>'.$v['tieude'].'</b>').'<br>
PHP:
<img src="'.$uanh.'" alt="Ảnh đại diện" height="50" width="42" /><br/>
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;");
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;");
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']}'");
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']}'");
PHP:
•Thể Loại: *<br><select name="theloai"><option value="'.$ar['idm'].'">Không đổi</option>';
PHP:
•URL ảnh đại diện: *<br/><textarea cols="20" name="anh" rows="1"/>'.$ar['anh'].'</textarea><br>
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']}'");
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']}'");
PHP:
•Thể Loại: *<br><select name="theloai"><option value="">Chọn Một</option>';
PHP:
•URL ảnh đại diện: <br/><textarea cols="20" name="anh" rows="1"/></textarea><br>
-- Hết --