MyBB Tutorials

How to display Random Text/s on each page load [MyBB]

Submitted by Sozin, , Thread ID: 3381

Thread Closed

RE: How to display Random Text/s on each page load [MyBB]

AndresXZ09
Closed Account
Level:
0
Reputation:
30
Posts:
1.22K
Likes:
139
Credits:
1.51K
01-05-2015, 12:45 AM
This post was last modified: 01-05-2015, 01:07 AM by AndresXZ09
#4
I think that you can replace that with

Code:
$random = array(
1=>"Blabla",
2=>"Blablabla",
3=>"jkdsa",
4=>"bkjsda",
);
$random_stuff = rand(1, count($random));
$_text = $random[$random_stuff];
Idk

In fact, if you use 'text here' it gives an error (or atleast I get an error) you have to use "text"

Users browsing this thread: 1 Guest(s)