That worked except it only listed the adoptable in which I was on that page because of:
PHP Code:
$query = "SELECT * FROM ".$prefix."owned_adoptables WHERE owner='$loggedinname' and aid='$id'";
so I changed it to:
PHP Code:
$query = "SELECT * FROM ".$prefix."owned_adoptables WHERE owner='$loggedinname'";
and then it listed all the adoptables the owner had.
Thanks so much for your help!
Now I can code it to actually navigate to those pages. Thanks!