Rose find this line:
	PHP Code:
	
		
			
$query = "SELECT * FROM owned_adoptables WHERE owner = '$owner' ORDER BY uid DESC LIMIT 0,5 "; 
		
	
 Change the 5 to the number of pets you'd like to display.  But that means, you have to change every $query to reflect that new number.  For example if you want 8, you'd have to change the next $query from
	PHP Code:
	
		
			
$query = "SELECT * FROM owned_adoptables WHERE owner = '$owner' ORDER BY uid DESC LIMIT 5,5"; 
		
	
 to
	PHP Code:
	
		
			
$query = "SELECT * FROM owned_adoptables WHERE owner = '$owner' ORDER BY uid DESC LIMIT 8,8"; 
		
	
 and then...
	PHP Code:
	
		
			
$query = "SELECT * FROM owned_adoptables WHERE owner = '$owner' ORDER BY uid DESC LIMIT 10,5"; 
		
	
 to
	PHP Code:
	
		
			
$query = "SELECT * FROM owned_adoptables WHERE owner = '$owner' ORDER BY uid DESC LIMIT 16,8"; 
		
	
 and so on.
Just find next $query and replace the values.