i need a mod how show random wallpapaer on index page for example
i install this script in sub dir
like www.example.com/wallpaper
but i want to show random wallpaper on index.php
i need a mod how show random wallpapaer on index page for example
i install this script in sub dir
like www.example.com/wallpaper
but i want to show random wallpaper on index.php
In index.inc.php you will see a line like this:
$items = $DB->getAll("SELECT * FROM ".DB_PREFIX."items a, ".DB_PREFIX."users_items b WHERE a.id=b.item_id $filter order by created DESC limit ".(ITEMS_PER_PAGE*($page-1)).",".ITEMS_PER_PAGE);
replace it with one like this:
$items = $DB->getAll("SELECT * FROM ".DB_PREFIX."items a, ".DB_PREFIX."users_items b WHERE a.id=b.item_id $filter order by RAND() limit ".ITEMS_PER_PAGE);
Please search before posting.
i can not find this code in index.inc.php
but i like this image 1.php is my wallpaper index.php
and 2.php is my site home index.php
i can not find this code in index.inc.php
but i like this image 1.php is my wallpaper index.php
and 2.php is my site home index.php
any one help me ???
You must log in to post.