Thread: Random Adoption
View Single Post
  #4  
Old 05-03-2009, 05:38 AM
Xius Xius is offline
Member
 
Join Date: Apr 2009
Posts: 59
Credits: 7,698
Xius
Default RE: Random Adoption

Delete the .htaccess file in picuploads, the same thing happened to me.

And, to show only 1 random adoptable...

Find:
PHP Code:
// Begin the output of all the adoptables to the user...

$query "SELECT * FROM ".$prefix."adoptables";
$result mysql_query($query);
$num mysql_numrows($result); 
Replace:
PHP Code:
$query "SELECT * FROM ".$prefix."adoptables"
With:
PHP Code:
$query "SELECT * FROM ".$prefix."adoptables ORDER BY RAND() LIMIT 1"
And you will now have a random adoptable each time.
If you want an example of what it looks like: Http://PokemonEpiphany.com/adopt.php
Reply With Quote