ob_start(); // keep from printing before cookie start or header ?>
| Sign In to Canine Chronicle Show Calendar |
|---|
if ($show = $_GET['show']) print('You must be logged in to enter Breed Results
'); ?> If you're not Registered, please Register and get a User ID.
Be sure to add CanineChronicleShowCalendar.com to your "safe list".
If you're a ShowDays user, you can sign in with your ShowDays User ID.
Your IP address is:
print($_SERVER['REMOTE_ADDR']);
function xdie($text)
{
die(' '.$text.' - Go Back');
}
function welc_email($email,$name,$code,$kennel)
{
$msg = "\n\nWelcome to Canine Chronicle Show Calendar!".
"\nIn order to complete your Registration, your must create a Password by clicking this link and following the instructions:".
"\nhttp://www.caninechronicleshowcalendar.com/k9pword.php?code=".$code.
"\n\nPlease let us know if we can provide any assistance in getting started.".
"\n\nThanks for signing up. Hope you enjoy the site.";
// "\n\nRon Z\n\n".
// "P.S. Join the Yahoo Group for ShowDays users: http://groups.yahoo.com/group/ShowDays".
// "\nand/or Join the Facebook Group for ShowDays users: http://www.facebook.com/groups/384651811576260/";
$name = str_replace("\\",'',$name);
$kennel = str_replace("\\",'',$kennel);
send_email($email,'WELCOME','Welcome to Canine Chronicle Show Calendar',"Dear $name (User ID = $code) $kennel,".$msg,'');
return(1);
}
function userid_email()
{
global $urow;
$code = $urow['ucode'];
$name = $urow['name'];
$email = $urow['email'];
$kennel = $urow['kennel'];
$msg = 'Dear '.$urow['name'].' / '.$urow['kennel'].",\n\nYour User ID is: ".$urow['ucode'];
$subj = 'Canine Chronicle Show Calendar User ID';
send_email($email,'USERID',$subj,$msg,'');
return(1);
}
function password_email()
{
global $urow;
$code = $urow['ucode'];
$name = $urow['name'];
$email = $urow['email'];
$kennel = $urow['kennel'];
//$msg = "\n\nYour Password is: ".$urow['password'].' (not case sensitive)';
$msg = "\n\nClick below for help with your Canine chronicle Show Calendar sign-in (you have one half hour).";
$msg .= "\n\nhttp://CanineChronicleShowCalendar.com/dispass.php?code=".$code;
$msg .= "&cr=".$urow['creatime']."&t=".time();
$subj = 'Canine Chronicle Show Calendar Important Information';
send_email($email,'SIGNIN',$subj,"Dear $name / $kennel,".$msg,'');
xstat('pword','','Password Sent '.$urow['name'].' / '.$urow['email']);
return(1);
}