MyBB Tutorials

Stickies Page [Like Nulled] {NO HIDE}

Submitted by Harley, , Thread ID: 42222

Thread Closed
Harley
Hi Puddin! Miss me?
Level:
0
Reputation:
19
Posts:
146
Likes:
19
Credits:
868
30-07-2017, 11:06 AM
This post was last modified: 08-08-2017, 07:43 AM by Harley
#1
For this tutorial I will use the Pages plugin:https://community.mybb.com/mods.php?action=view&pid=936


PHP Code:
<html>
<
head>
<
title>Forum Stickies</title>
</
head>
</
html>

<?
php
define
("IN_MYBB"1);
require_once 
"./global.php";
require_once 
MYBB_ROOT "inc/class_parser.php";

$query $db->query("SELECT * FROM mybb_threads WHERE sticky=1");
while(
$threads $db->fetch_array($query))
{
  
$stickies[] = $threads;



for( 
$i$i count($stickies) ; $i++ )
{
 echo 
"tid: ",$stickies[$i]['tid'];
 echo 
"<br/>";
 echo 
"username: ",$stickies[$i]['username'];
 echo 
"<br/>";
 echo 
"closed: ",$stickies[$i]['closed'];
 echo 
"<br/>";
 echo 
"subject: ",$stickies[$i]['subject'];
 echo 
"<br/>";
 echo 
"<br/>";
}
?>

RE: Stickies Page [Like Nulled] {NO HIDE}

Frizzer
Closed Account
Level:
0
Reputation:
0
Posts:
69
Likes:
0
Credits:
145
06-08-2017, 09:26 PM
#2
You should add images to how it looks like, none of your tutorials have images and neither will i unlock them.

RE: Stickies Page [Like Nulled] {NO HIDE}

Harley
Hi Puddin! Miss me?
Level:
0
Reputation:
19
Posts:
146
Likes:
19
Credits:
868
OP
07-08-2017, 07:04 PM
#3
06-08-2017, 09:26 PM
Frizzer Wrote:
You should add images to how it looks like, none of your tutorials have images and neither will i unlock them.

The tutorials are just basic sql queries, they are tutorials, not full pages. They're just white pages with text. They allow you to create pages with minimal knowledge that are just like the pages on nulled. I don't care if people unlock them, the ones that want them will and the ones that want to learn will. It's not my problem and it's only your forums loss of 'custom' pages and features.

Users browsing this thread: 1 Guest(s)