Fill out the form below to join this fanlisting. Please make sure you've read the rules and if you have a website, that you put a link back up to before joining!

Please note: this form is for joining only! If you wish to update your member information, please click here.

Name:
Email Address:
Please Note: All email addresses displayed on the member pages are proctected from SPAM by Javascript.

Display My Email Address
Hide My Email Address
Website:
Country:
:
Any comments/questions?

Powered by PHPFanBase

Error

Oops, it appears you forgot to enter either your email address, your name or your country. Please press the BACK button in your browser and try again.

"; } else { $hideemail = clean_up($_POST['hideemail']); $name = clean_up($_POST['name']); $email = clean_up($_POST['email']); $url = clean_up($_POST['url']); $country = clean_up($_POST['country']); $comments = clean_up($_POST['comments']); $fave = clean_up($_POST['fave']); $find = "/(content-type|bcc:|cc:|onload|onclick|javascript)/i"; if (preg_match($find, $hideemail) || preg_match($find, $name) || preg_match($find, $email) || preg_match($find, $url) || preg_match($find, $country) || preg_match($find, $comments) || preg_match($find, $fave)) { echo "

No naughty injecting, please.

"; exit; } $result = mysql_query("SELECT `id` FROM `$table` WHERE email = '$email'"); $num = mysql_num_rows($result); if ($num == "0"){ if ($emailnotify == 'Y') { $msg = "Name:\t$name\n"; $msg .= "E-Mail:\t$email\n"; $msg .= "Hide E-Mail:\t$hideemail\n"; $msg .= "URL:\t$url\n"; $msg .= "Country:\t$country\n"; if ($enablefave == 'Y') { $msg .= "Fave:\t$fave\n"; } $msg .= "Comments:\t$comments\n"; $msg .= "Sender IP:\t{$_SERVER['REMOTE_ADDR']}\n"; $msg .= "\nLogin to your Admin Panel: $siteurl/admin.php\n"; $recipient = $adminemail; $subject = "Member - $sitename"; $mailheaders = "From: $email\n"; $mailheaders .= "Reply-To: $email\n\n"; mail($recipient, $subject, $msg, $mailheaders); } if ($enablefave == 'Y') { $query = "INSERT INTO $table values ('','$name','$email','$url','$country','$comments','$hideemail','-','$fave')"; } else { $query = "INSERT INTO $table values ('','$name','$email','$url','$country','$comments','$hideemail','-')"; } mysql_query($query); echo "

Thank you, {$name}! You will be added to the members list with the next update. :)

"; } else { ?>

Sorry, but this email address is already listed in the database. This means that you're already listed as a member. If you wish to update your member information, please use the Update Form. If you want to see your listing as a member, please click here.

Please use the form below to update your member information. If you wish to join this fanlisting, use the Join Form located here. Thanks!

Member ID:
Name:
Old Email:
Old URL:
Country:
New Email:
New URL:
Did anything else change?
Error

Oops, it appears you forgot to enter either your old email address, your name or your country. Please press the BACK button in your browser and try again.

"; } else { $id = clean_up($_POST['id']); $name = clean_up($_POST['name']); $email = clean_up($_POST['email']); $newemail = clean_up($_POST['newemail']); $url = clean_up($_POST['url']); $newurl = clean_up($_POST['newurl']); $country = clean_up($_POST['country']); $comments = clean_up($_POST['comments']); $find = "/(content-type|bcc:|cc:|onload|onclick|javascript)/i"; if (preg_match($find, $hideemail) || preg_match($find, $name) || preg_match($find, $email) || preg_match($find, $newemail) || preg_match($find, $url) || preg_match($find, $newurl) || preg_match($find, $country) || preg_match($find, $comments) || preg_match($find, $fave)) { echo "

No naughty injecting, please.

"; exit; } $msg = "Name:\t$name\n"; $msg .= "Old E-Mail:\t$email\n"; $msg .= "Old URL:\t$url\n"; $msg .= "Country:\t$country\n"; $msg .= "New E-Mail:\t$newemail\n"; $msg .= "New URL:\t$newurl\n"; $msg .= "Other Changes:\t$comments\n"; $msg .= "Sender IP:\t{$_SERVER['REMOTE_ADDR']}\n"; $msg .= "\nLogin to your Admin Panel: $siteurl/admin.php\n"; $recipient = $adminemail; $subject = "Update Info - $sitename"; $mailheaders = "From: $email\n"; $mailheaders .= "Reply-To: $email\n\n"; mail($recipient, $subject, $msg, $mailheaders); echo "

Thanks, your update has been sent. I will change your information as soon as possible!

"; ?>