|
A sitter can log into your account by using your name and his/her password. You can have up to two sitters.
|
| Name of the sitter |
(/2)
|
|
You have no sitters.";
}
$sitSlots = [1 => 'sit1', 2 => 'sit2'];
foreach ($sitSlots as $type => $key) {
if ($session->userinfo[$key] != 0) {
$uid = $session->userinfo[$key];
$uname = $database->getUserField($uid, "username", 0);
echo "";
}
}
?>
|
|
You have been entered as sitter on the following accounts. You can cancel this by clicking the red X.
|
|
getSitee($session->uid);
if (count($sitee) == 0) {
echo "You have no sitters.";
} else {
foreach ($sitee as $sit) {
echo "";
}
}
?>
|