Jump to content

Cathering_

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Cathering_'s Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Well one things first is that the Form should not be there... when submited but for some amazing reason it is still is there XD NEver mind ill just delete it and make a new one
  2. Sorry, http://www.cathering.co.uk/contact.php
  3. Ok if you go to the link and fill in everything (validately) and click on send it will just look as if you just refreshed the page what it ment to do was put a <span style="display:none;"> and end it as soon as the form ends it self and then display Message recived text but its not , so thats telling me that somehow the variables where not changed
  4. The actual value of submit is Send but thats still not doing anything
  5. Ok its basically well this is what I think is that the variables when the form is being submited are not begin changed heres code really aplogise for the shear size of it <?php $error1 = '1'; $error2 = '0'; $error3 = '0'; $error4 = '0'; $error5 = '0'; $error6 = '0'; $displayform = '1'; if($_POST['submit']){ session_start(); function securepost($post_type){ $secureposting = $post_type; $secureposting = stripslashes($post_type); $secureposting = addslashes($secureposting); $secureposting = strip_tags($secureposting); return $secureposting; } function isBlank($post_type){if(preg_match('[a-zA-Z]',$post_type)){return true;}else{return false;}} function check_email_address($email) { // First, we check that there's one @ symbol, and that the lengths are right if (!ereg("^[^@]{1,64}@[^@]{1,255}$", $email)) { // Email invalid because wrong number of characters in one section, or wrong number of @ symbols. return false; } // Split it into sections to make life easier $email_array = explode("@", $email); $local_array = explode(".", $email_array[0]); for ($i = 0; $i < sizeof($local_array); $i++) { if (!ereg("^(([A-Za-z0-9!#$%&'*+/=?^_`{|}~-][A-Za-z0-9!#$%&'*+/=?^_`{|}~\.-]{0,63})|(\"[^(\\|\")]{0,62}\"))$", $local_array[$i])) { return false; } } if (!ereg("^\[?[0-9\.]+\]?$", $email_array[1])) { // Check if domain is IP. If not, it should be valid domain name $domain_array = explode(".", $email_array[1]); if (sizeof($domain_array) < 2) { return false; // Not enough parts to domain } for ($i = 0; $i < sizeof($domain_array); $i++) { if (!ereg("^(([A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9])|([A-Za-z0-9]+))$", $domain_array[$i])) { return false; } } } return true;} $name = securepost($_POST['name']); $emailaddy = securepost($_POST['email']); $emailconfirm = securepost($_POST['emailretype']); $subject = securepost($_POST['subject']); $message = securepost($_POST['message']); $security = securepost($_POST['securitycode']); if(isBlank($name)){$error1 = '1';} if(! check_email_address($emailaddy)){$error2 = '1';} if($emailaddy != $emailconfirm){$error3 = '1';} if(isBlank($subject)){$error4 = '1';} if(isBlank($message)){$error5 = '1';} if(($_SESSION['security_code'] == $security) && (!empty($_SESSION['security_code']))){ $error6 = '0'; unset($_SESSION['security_code']); } else{ $error6 = '1'; } if(error1 == '0' && error2 == '0' && error3 == '0' && error4 == '0' && error5 == '0' && error6 == '0'){ $remoteIP = $_SERVER['REMOTE_ADDR']; if (strstr($remoteIP, ', ')) { $ips = explode(', ', $remoteIP); $remoteIP = $ips[0]; } $Tto = $emailaddy; $Tsubject = "Cathering.co.uk - Contacted"; $Tmessage = "Hello! you used the contact me form on cathering.co.uk I will email you as soon as I can! Thanks, Cathering_"; $Tfrom = "noreply@cathering.co.uk"; $Theaders = "From: $form"; mail($Tto,$Tsubject,$Tmessage,$Theaders); $to = $emailaddy; $subject = $subject; $message = "A User has tried to contact you IP: ".$remoteIP." Name: ".$name." Email: ".$emailaddy." Subject: ".$subject." Message: ".$message; $from = $emailaddy; $headers = "From: $form"; mail($Tto,$Tsubject,$Tmessage,$Theaders); $displayform = '0'; } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>Cathering, The SRL Scripts Website ~ Contact Me</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="robots" content="noindex,nofollow" /> <link rel="stylesheet" type="text/css" href="css.css" /> <?php if($displayform == '1'){echo '<script type="text/javascript" src="valid.js"></script>';} ?> </head> <body> <div id="container"> <!-- HEADER --> <div id="header"><div class="headtitle"><a href="http://www.cathering.co.uk/index.html"><img style="border:none;" src="images/logo.gif" alt="The Cathering Website" /></a></div></div> <!-- END HEADER --> <!-- MENU --> <div id="menu"> <ul> <li><a onmouseover="window.status=this.innerHTML+' - '+this.title;return true" onmouseout="window.status='';return true;" href="http://www.cathering.co.uk/index.html" title="Visit The Website Home.">Home</a></li> <li><a onmouseover="window.status=this.innerHTML+' - '+this.title;return true" onmouseout="window.status='';return true;" href="http://www.cathering.co.uk/aboutme.html" title="Get To Know More About Me.">About Me</a></li> <li><a onmouseover="window.status=this.innerHTML+' - '+this.title;return true" onmouseout="window.status='';return true;" style="text-decoration:underline;" href="http://www.cathering.co.uk/contact.php" title="Leave A Message.">Contact Me</a></li> <li><a onmouseover="window.status=this.innerHTML+' - '+this.title;return true" onmouseout="window.status='';return true;" href="http://www.cathering.co.uk/works.html" title="What Do I Do In My Spare Time?">My Works</a></li> <li><a onmouseover="window.status='SRL Scripts & Downloads - '+this.title;return true" onmouseout="window.status='';return true;" href="http://www.cathering.co.uk/scripts.html" title="View The SRL Scripts I Have Made In The Past.">SRL Scripts & Downloads</a></li> <li><a onmouseover="window.status=this.innerHTML+' - '+this.title;return true" onmouseout="window.status='';return true;" href="http://www.cathering.co.uk/tutorial.html" title="Learn How To Script In Scar With This Tutorial.">SRL Tutorial</a></li> </ul> </div> <!-- END MENU --> <!-- ROUNDED SHAPE BELOW HEADER --> <div id="roundedheader"> </div> <!-- START CONTENT --> <div id="content"> <!-- LEFT DIV --> <div id="insidecontent"> <h1>contact me</h1> <h2>contact me</h2> <?php if($displayform == '0') echo '<h3>Message Sent</h3>'; ?> <?php if($displayform == '0') echo '<p><span style="color:#006600;">Your message has been sent I will contact you as soon as I can!</span></p>'; ?> <?php if($displayform == '0') echo '<span style="display:none;">'; ?> <h3>Leave a message</h3> <p>Please fill in the form below<br /></p> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" onsubmit="this.submit.disabled=true;" id="contact_form"> <p> <label for="a1">Your Name:<br /></label> <input type="text" onblur="validate('blank1',this,document.getElementById('error1'));" onkeyup="validate('blank1',this,document.getElementById('error1'));" style="color:#66CC00;text-transform:capitalize;" name="name" id="a1" size="40" value="<?php echo $_POST['name']; ?>" maxlength="200" /><br /> <span id="error1"><?php if($error1 == '1'){ echo '<span style="color:FF0000;">Invalid Input</span>';} else{ echo ' '; } ?></span> <br /><br /> <label for="a2">Your Email:<br /></label> <input type="text" style="color:#66CC00;text-transform:lowercase;" onblur="validate('email',this,document.getElementById('error2'));" onkeyup="validate('email',this,document.getElementById('error2'));validate('confirmemail',document.getElementById('contact_form').emailretype,document.getElementById('error3'));" name="email" id="a2" size="40" value="<?php echo $_POST['email']; ?>" maxlength="500" /><br /> <span id="error2"><?php if($error2 == '1'){ echo '<span style="color:FF0000;">Invalid Input</span>';} else{ echo ' '; } ?></span> <br /><br /> <label for="a3">Confirm Email:<br /></label> <input type="text" style="color:#66CC00;text-transform:lowercase;" onblur="validate('confirmemail',this,document.getElementById('error3'));" onkeyup="validate('confirmemail',this,document.getElementById('error3'));" name="emailretype" id="a3" size="40" value="<?php echo $_POST['emailretype']; ?>" maxlength="500" /><br /> <span id="error3"><?php if($error3 == '1'){ echo '<span style="color:FF0000;">Invalid Input</span>';} else{ echo ' '; } ?></span> <br /><br /> <label for="a4">Subject:<br /></label> <input type="text" onblur="validate('blank2',this,document.getElementById('error4'));" onkeyup="validate('blank2',this,document.getElementById('error4'));" style="color:#66CC00;text-transform:capitalize;" name="subject" id="a4" size="40" value="<?php echo $_POST['subject']; ?>" maxlength="250" /><br /> <span id="error4"><?php if($error4 == '1'){ echo '<span style="color:FF0000;">Invalid Input</span>';} else{ echo ' '; } ?></span> <br /><br /> <label for="a5">Message:<br /></label> <textarea name="message" onblur="validate('blank3',this,document.getElementById('error5'));" onkeyup="validate('blank3',this,document.getElementById('error5'));" style="color:#66CC00;text-transform:capitalize;" id="a5" rows="10" cols="40"><?php echo $_POST['message']; ?></textarea><br /> <span id="error5"><?php if($error5 == '1'){ echo '<span style="color:FF0000;">Invalid Input</span>';} else{ echo ' '; } ?></span> <br /><br /> <i>Please enter the text you see in the image below.</i> <br /> <img src="cap/CaptchaSecurityImages.php" style="border:1px solid #000;" alt="You MUST enable images to contact me" title="Enter The Text You See" /> <br /><br /> <label for="a6">Code:<br /></label> <input type="text" style="color:#66CC00;text-transform:uppercase;" onblur="validate('securitycode',this,document.getElementById('error6'));" onkeyup="validate('securitycode',this,document.getElementById('error6'));" id="a6" size="28" maxlength="28" name="securitycode" /> <br /><span id="error6"><?php if($error6 == '1'){ echo '<span style="color:FF0000;">Invalid Security Code</span>';} else{ echo ' '; } ?></span> <br /><br /> <input type="submit" value="Send" name="submit" /> <?php if($displayform == '1'){ echo' <script type="text/javascript"> <!-- document.getElementById("contact_form").submit.disabled=true; --> </script>';} ?> </p> </form> <?php if($displayform == '0') echo '</span>'; ?> </div> <!-- END LEFT DIV --> <!-- SIDEBAR --> <div id="sidebar"> <h1>download</h1> <h2>download scar</h2> <h3>Download Scar Divi</h3><p> Getting angry because you can't find the link? Then <a href="http://www.freddy1990.com/scar.php">click here</a>! </p> </div> <!-- END SIDEBAR --> <div style="clear: both;"></div> <!-- END FLOAT CLEANER --> </div> <!-- END CONTENT --> <!-- ROUNDED SHAPE ABOVE FOOTER --> <div id="roundedfooter"> </div> <!-- FOOTER --> <div id="footer"> <span>XHTML 1.1 STRICT | CSS 2 | Layout By Yamazaki</span> </div> <!--END FOOTER --> </div> <?php if($displayform == '1'){ echo ' <script type="text/javascript"> <!-- setTimeout(\'checksubmitbutton()\',1); --> </script>'; } ?> </body> </html> URL to webpage: http://www.cathering.co.uk/contactme.php If you try to submit it , it will just been as if you refreshed only apart from fact that the values has been set using POST im really confused
  6. How fast will it do that at that rate but?
  7. I use this code Javascript code: function switchMenu(obj,objtext) { var el = document.getElementById(obj); if ( el.style.display != 'none' ) { el.style.display = 'none'; document.getElementById(objtext).innerHTML="+"; } else { el.style.display = ''; document.getElementById(objtext).innerHTML="-"; } } HTML Code: <div onclick="switchMenu('crush1','crushtext1')" class="label">Movies <span id="crushtext1"><script type="text/javascript"><!-- document.write("-"); --></script></span></div> <ul class="block" id="crush1"> <li><a href="http://movies.freemoviesonline.eu/actionandthriller.php" onmouseover="window.status='Action & Thriller - '+this.title;return true;" onmouseout="window.status='';return true;" title="Watch the old good guy versus bad guy Hollywood action films!">Action & Thriller - <?php echo $action; ?></a></li> <li><a href="http://movies.freemoviesonline.eu/childrenandcartoon.php" onmouseover="window.status='Children & Cartoon - '+this.title;return true;" onmouseout="window.status='';return true;" title="Great childrens movies for all ages.">Children & Cartoon - <?php echo $children; ?></a></li> <li><a href="http://movies.freemoviesonline.eu/comedyandfunny.php" onmouseover="window.status='Comedy & Funny - '+this.title;return true;" onmouseout="window.status='';return true;" title="Kill your self with endless laughter with are comedy and funny films!">Comedy & Funny - <?php echo $comedy; ?></a></li> <li><a href="http://movies.freemoviesonline.eu/drama.php" onmouseover="window.status='Drama - '+this.title;return true;" onmouseout="window.status='';return true;" title="Great and heart brakeing movies go on! feel what the actor feels!">Drama - <?php echo $drama; ?></a></li> <li><a href="http://movies.freemoviesonline.eu/fantasyandmyth.php" onmouseover="window.status='Fantasy & Myth - '+this.title;return true;" onmouseout="window.status='';return true;" title="From dragons to Harry Potter let your imagination run wild!">Fantasy & Myth - <?php echo $fantasy; ?></a></li> <li><a href="http://movies.freemoviesonline.eu/horrorandscary.php" onmouseover="window.status='Horror & Scary - '+this.title;return true;" onmouseout="window.status='';return true;" title="We will have you hiding behind your sofa!">Horror & Scary - <?php echo $horror; ?></a></li> <li><a href="http://movies.freemoviesonline.eu/romanceandlove.php" onmouseover="window.status='Romance & Love - '+this.title;return true;" onmouseout="window.status='';return true;" title="Immerse your self in romance and red Roman candles!">Romance & Love - <?php echo $love; ?></a></li> <li><a href="http://www.freemoviesonline.eu/submitmovie.php" onmouseover="window.status='Submit A Movie - '+this.title;return true;" onmouseout="window.status='';return true;" title="You can help us alot by submiting a movie!">Submit A Movie</a></li> Example: http://www.freemoviesonline.eu
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Its not nessary its just for W3C validateion and the xmlns="http://www.w3.org/1999/xhtml" is not nessary its one of them "add them if you likes"
  9. I keep getting the following error: Parse error: syntax error, unexpected T_IF in /mnt/web5/43/99/51551199/htdocs/process/complain.php on line 145 But I cant find anything to cause it heres code which was really a draft: <?php include("http://www.freemoviesonline.eu/php/topdoc.php"); ?> <!-- nothing in that include right now...--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <?php include("http://www.freemoviesonline.eu/php/head.php"); ?> <!--Heres the code in the PHP include--> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1" /> <meta name="Author" content="Jordan W" /> <meta name="Subject" content="Movies" /> <meta http-equiv="content-LANGUAGE" content="EN-GB" /> <meta name="Robots" content="all,index,follow" /> <meta name="Designer" content="Arcsin" /> <meta name="Revisit-After" content="3 Days" /> <meta name="Rating" content="general" /> <meta name="Distribution" content="IU" /> <meta http-equiv="VW96.OBJECT TYPE" content="entertainment - site" /> <script type="text/javascript" src="http://www.freemoviesonline.eu/js/bookmark.js"></script> <script type="text/javascript" src="http://www.freemoviesonline.eu/js/cookiehandler.js"></script> <script type="text/javascript" src="http://www.freemoviesonline.eu/js/alertopera.js"></script> <script type="text/javascript" src="http://www.freemoviesonline.eu/js/menucrush.js"></script> <script type="text/javascript"> function validsearch(){if(document.search.q.value==""){ alert("You have nothing to search!"); document.search.q.focus(); return false;}} if(navigator.appName=="Opera"){AlertOpera();} addthis_url = 'http://www.freemoviesonline.eu/'; addthis_title = 'Free Movies Online - Your source for free online movies!'; addthis_pub = 'FRHYO3HYBIPHJ2TY'; </script> <link rel="stylesheet" type="text/css" href="http://www.freemoviesonline.eu/default.css" /> <!-- End of PHP Include--> <title>...</title> </head> <body onload="initValidation();"> <?php include("http://www.freemoviesonline.eu/php/topbody.php"); ?> <!--Heres the code in the PHP include--> <div id="main"> <div id="main_left"> <div id="header"> <p><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><a href="http://www.freemoviesonline.eu/"><img src="http://www.freemoviesonline.eu/img/logotext.gif" title="Free Movies Online - Your source for free online movies!" alt="Free Movies Online"/></a></p> </div> <div id="navigation"> <ul> <li><a href="http://www.freemoviesonline.eu/index.php" onmouseover="window.status='Home - '+this.title;return true;" onmouseout="window.status='';return true;" title="View are homepage.">Home</a></li> <li><a href="http://www.freemoviesonline.eu/about.php" onmouseover="window.status='About Us - '+this.title;return true;" onmouseout="window.status='';return true;" title="This will help you get to know us little better!">About Us</a></li> <li><a href="http://movies.freemoviesonline.eu/index.php" onmouseover="window.status='Watch A Movie - '+this.title;return true;" onmouseout="window.status='';return true;" title="Bored? Then watch a movie!">Watch A Movie</a></li> <li><a href="http://www.freemoviesonline.eu/contact.php" onmouseover="window.status='Contact Us - '+this.title;return true;" onmouseout="window.status='';return true;" title="Contact us for almost any reason.">Contact Us</a></li> <li class="displayfalse" id="lijs"><a href="javascript:bookmarksite('Free Movies Online - Your source for free online movies!', 'http://www.freemoviesonline.eu/')" onmouseover="window.status='Add Us To Favorites - '+this.title;return true;" onmouseout="window.status='';return true;" title="Add us so you can come back and get more movies! Best of all you won't forget!">Add Us To Favorites</a></li> </ul> </div> <script type="text/javascript"> <!-- if(navigator.appName!="Opera") {document.getElementById("lijs").className="displaytrue";} --> </script> <!-- End of PHP Include--> <!-- MAIN CONTENT - START --> <div id="content"> <h1>Contact Us - Complaint</h1> <div class="descr"></div> <div class="post_body"> <?php $firstname= strip_tags($_POST["First_Name"]); $lastname= strip_tags($_POST["Last_Name"]); $email= strip_tags($_POST["Email"]); $confirmemail= strip_tags($_POST["Confirm_Email"]); $complainabout= strip_tags($_POST["Complaining_About"]); $complainreason= strip_tags($_POST["Why_Complain"]); function nosymbols($field) { if(!preg_match("/[^a-zA-Z\Ä\ä\Ö\ö\Ü\ü]+$/s",$field)) return TRUE; else return FALSE; } function checkEmail($emailaddy) { if(eregi("^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$]", $emailaddy)) { return FALSE; } list($Username, $Domain) = split("@",$emailaddy); if(getmxrr($Domain, $MXHost)) { return TRUE; } else { if(fsockopen($Domain, 25, $errno, $errstr, 30)) { return TRUE; } else { return FALSE; } } } function spamcheck($spamfield) { if(eregi("to:",$spamfield) || eregi("cc:",$spamfield)) { return TRUE; } else { return FALSE; } } $submitingornot =$_POST["valid"]; $emailedyet="false" if($submiting=="gen"){ //The error line, it was ment to check if we where actuly submiting the page & not some person paying a random visit $errortext=""; require_once('recaptchalib.php'); $privatekey = "***************************************"; //Covered, checks if security code is corect $resp = recaptcha_check_answer ($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]); if (!$resp->is_valid) { $errortext = '<span style="color:#FF6600;">The security code you entered is invalid please retype it.</span>'; } else { if(!nosymbols($firstname)) {$errortext = '<span style="color:#FF6600;">Please enter your first name. (It also must not contain any symbols.)</span>';} elseif(!nosymbols($lastname)) {$errortext = '<span style="color:#FF6600;">Please enter your last name. (It also must not contain any symbols.)</span>';} elseif(checkEmail($email) == FALSE) {$errortext = '<span style="color:#FF6600;">Please enter a valid email in the valid email field!</span>';} elseif($confirmemail!=$email) {$errortext = '<span style="color:#FF6600;">The Email and Confirm Email fields are not the same.</span>';} elseif(empty($complainabout)) {$errortext = '<span style="color:#FF6600;">Please tell us what you are complaining about or we can not help!</span>';} elseif(strlen($complainreason)>3000||strlen($complainreason)<1) {$errortext = '<span style="color:#FF6600;">The Why are you complaining field must contain at least 1 letter and at most 3000.</span>';} else { if(spamcheck($email)==TRUE){ $errortext = '<span style="color:#FF6600;">You have tried to do a Email injection. Processing halted!</span>'; mail("abuse@freemoviesonline.eu", "Subject: PHP Form Processor: Email Injection", "The IP $_SERVER["REMOTE_ADDR"] tried to inject email headers into the form processor please add this IP to the blacklist makeing this IP enable to submit contact forms.", "From: null@null.com" ); } else{ mail("contactus@freemoviesonline.eu", "Subject: Contact Us: Complaint", " IP: $_SERVER["REMOTE_ADDR"]<br /> Full Name: $firstname $lastname<br /> Email: $email<br /> <br /> What are you complaining about? $complainabout<br /> <br /> Why are you complaining about it? $complainreason", "From: $email"); mail($email, "Subject: Free Movies Online: Complaint", "We are sorry to hear that you are complaining about are service are staff<br /> will be reviewing your complaint and then will make a reply to tell you if<br /> anything will be done about it and if not why, thank you for takeing the <br /> time for contacting us we usally reply within 1 hour - 48 hours, Thank you.<br /> <b><u>This is Automated Please do not reply back.</u></b>", "From: freemoviesonline@freemoviesonline.eu"); $emailture="ture"; $errortext=""; }}}} else{echo '';} ?> <?php if($emailture=="ture"){ echo '<span style="color:#00FF00;">Thank you, the form has been send, we will try to reply to you within 1 hour - 48 hours.</span><span style="display:none;">'; } ?> <p>Please Tell Us why you are makeing a complaint</p> <br /> <p align="left"> <?php echo $errortext; ?><br /><br /> <map id="null"> <form name="contactus" method="post" action="http://www.freemoviesonline.eu/process/complain.php" onsubmit="return validateStandard(this, 'error');"> <input type="hidden" name="valid" value="gen" /> <label for="a1">First Name:</label><br /> <input size="50" name="First_Name" class="input" value="<?php echo $firstname; ?>" onkeypress="return handleEnter(this, event)" type="text" id="a1" /> <script type="text/javascript"> <!-- document.write(' <img src="http://www.freemoviesonline.eu/img/info.gif" alt="Hint" onmouseover="showhint(\'We like to address people by there full name.\', this, event, \'150px\')" />'); --> </script> <br /><br /> <label for="a2">Last Name:</label><br /> <input size="50" name="Last_Name" class="input" value="<?php echo $lastname; ?>" onkeypress="return handleEnter(this, event)" type="text" id="a2" /> <script type="text/javascript"> <!-- document.write(' <img src="http://www.freemoviesonline.eu/img/info.gif" alt="Hint" onmouseover="showhint(\'We like to address people by there full name.\', this, event, \'150px\')" />'); --> </script> <br /><br /> <label for="a3">Valid Email:</label><br /> <input size="50" name="Email" class="input" style="text-transform:lowercase;" value="<?php echo $email; ?>" onkeypress="return handleEnter(this, event)" type="text" id="a3" /> <script type="text/javascript"> <!-- document.write(' <img src="http://www.freemoviesonline.eu/img/info.gif" alt="Hint" onmouseover="showhint(\'A valid email please!<br />We want your email so that we can reply to your message. (We try to reply within 1 hour - 48 hours.) We do not give out information nor do we spam.\', this, event, \'150px\')" />'); --> </script> <br /><br /> <label for="a4">Confirm Email:</label><br /> <input size="50" name="Confirm_Email" class="input" style="text-transform:lowercase;" value="<?php echo $confirmemail; ?>" onkeypress="return handleEnter(this, event)" type="text" id="a4" /> <script type="text/javascript"> <!-- document.write(' <img src="http://www.freemoviesonline.eu/img/info.gif" alt="Hint" onmouseover="showhint(\'This helps you check if your email is correct. If the two fields are not the same you will be alerted about it.\', this, event, \'150px\')" />'); --> </script> <br /><br /> <label for="a5">What are you complaining about:</label><br /> <input size="50" name="Complaining_About" class="input" onkeypress="return handleEnter(this, event)" type="text" value="<?php echo $complainabout; ?>" id="a5" maxlength="100" /> <script type="text/javascript"> <!-- document.write(' <img src="http://www.freemoviesonline.eu/img/info.gif" alt="Hint" onmouseover="showhint(\'So you want to complain, what do you want to complain about?\', this, event, \'150px\')" />'); --> </script> <br /><br /> <label for="a6">Why are you complaining about it:</label> <script type="text/javascript"> <!-- document.write(' <img src="http://www.freemoviesonline.eu/img/info.gif" alt="Hint" onmouseover="showhint(\'Why are you complaining about this certain thing?\', this, event, \'150px\')" />'); --> </script> <br /> <textarea cols="40" rows="7" class="input" name="Why_Complain" id="a6"><?php echo $complainreason; ?></textarea> <br /> <script type="text/javascript"> <!-- displaylimit("","a6",3000) --> </script> <noscript>No more than 3000 letters</noscript> <br /> <br /> <br /> <b>Security code</b>: Please type the words you see below. <script type="text/javascript"> <!-- document.write(' <img src="http://www.freemoviesonline.eu/img/info.gif" alt="Hint" onmouseover="showhint(\'This helps confirm you are human.\', this, event, \'150px\')" />'); --> </script> <script type="text/javascript"> <!-- var RecaptchaOptions = { theme : 'white' }; --> </script> <br /> <script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6Le2IwAAAAAAAIYVC0nvAQ7tuYE0Jx0j5rO1w80L"></script> <br /> <script type="text/javascript"> <!-- document.write('<i>There is a giant space between the two words that counts as one space! (The words do not contain any symbols.)</i>'); --> </script> <noscript> <iframe src="http://api.recaptcha.net/noscript?k=6Le2IwAAAAAAAIYVC0nvAQ7tuYE0Jx0j5rO1w80L" style="height:300px;width:500px;" frameborder="0"></iframe><br /> <textarea name="recaptcha_challenge_field" rows="3" cols="40"> </textarea> <input type="hidden" name="recaptcha_response_field" value="manual_challenge" /> <br /><i>If you do not have javascript enabled and cannot display javascript please post in the surpport forum so we can help you</i><br /> <i>There is a giant space between the two words that counts as one space! (The words do not contain any symbols.)</i> </noscript> <br /><br /><br /> <input type="submit" name="Sub" value="Submit" /> <input type="reset" name="Res" value="Cancel" /> </form> </map> </p> <?php if($emailture=="true"){echo '</span>';} ?> </div> </div> </div> <!-- MAIN CONTENT END --> <?php include("http://www.freemoviesonline.eu/php/bodyend.php"); ?> <!--no need to view this.--> Any ideas? im confused ??? ??? ??? ???
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.