• 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.

Admin

Well-Known Member
Staff member
Administrator
Trước hết bạn cần có một files search.php (cái này tự chuẩn bị)
Tiếp theo bạn tạo 1 table `lastsearch` với những colum sau `id` ,`text`
Tiếp theo ta dùng code này trong files lastsearch.php
PHP:
mysql_query("INSERT INTO `lastsearch` SET `text` = '$key'");
$key ở đây tức là nội dung mà người sử dụng tìm kiếm tùy thuộc vào trong files search.php đặt hàm ntn thì ta thay như thế thôi :)
Nếu bạn muốn những keyword không bị lặp lại khi người sử dụng tìm kiếm thì ta dùng code sau
PHP:
$kt = mysql_fetch_array(mysql_query("SELECT `text` FROM `lastsearch` WHERE `text` = '$ey'"));
if ($kt) {
//NONE
} else {
mysql_query("INSERT INTO `lastsearch` SET `text` = '$key'");
//INSERT COPELETE
}
Xong bước thứ nhất, muốn hiển thị ở đâu thì ta chèn code sau
PHP:
$cn = mysql_query("SELECT * FROM `lastsearch` ORDER BY `id` DESC");
while ($ls = mysql_fetch_array($cn)) {
//Main
echo 'KeyyWord:<a href="/search.php?key='.$ls['text'].'">'.$ls['text'].'</a>';
}
 

Facebook Comments

New posts New threads New resources

Back
Top