Jump to content

displaying random page


thindery

Recommended Posts

You may want to refer to this thread: http://forums.phpfreaks.com/viewtopic.php?t=1946

 

Here\'s a solution you can use for this situation:

Make an array of possible pages and randomly select a key.

 

[php:1:9dc168d5bd]$arr = Array(\\\"pg1.php\\\",\\\"pg2.php\\\",\\\"pg3.php\\\",\\\"pg4.php\\\",\\\"pg5.php\\\");

srand((double)microtime()*1000000);

$rand = rand(0,(sizeOf($arr)-1));

$file = $arr[$rand];

 

include($file);[/php:1:9dc168d5bd]

 

Hope that helps.

Link to comment
https://forums.phpfreaks.com/topic/147-displaying-random-page/#findComment-445
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.