Adding checkbox Flash mailer form

I'm back here where someone else left off, and I don't know the first thing about Action or PHP scripts.

I have a form (name, Email, subject, Message) flash and I want to add a box for "Add me to your mailing list.

I tried to break it down and logically figure it out, but no luck, guess I'm not that smart.  :-)

The mailer already works very well, and I would just add a second line to the email with "add to the list of mail: Yes/No.

I named the box "maillist.

Here's the action script:

var mainTL:MovieClip =;

submit_mc._alpha = 0;

var dataSender:LoadVars = new LoadVars();

var dataReceiver:LoadVars = new LoadVars();

var formCheck:Object = new Object();
formCheck.onKeyUp = function() {}
If (name_txt.text! = "& &)
email_txt. Text! = "& &
subject_txt. Text! = "& &
message_txt. Text! = '') {}
alert_txt. Text = ";
submit_mc._alpha = 50;
} else {}
submit_mc._alpha = 0;
}
}

Key.addListener (formCheck);

var normal_border:Number = 0x7A7777;
var focus_border:Number = 0xFA8D00;

var normal_background:Number = 0xECECE6;
var focus_background:Number = 0xE9E3E3;

var normal_color:Number = 0x776D6C;
var focus_color:Number = 0 x 000000;

entries = [email_txt, subject_txt, name_txt, message_txt];

for (var inputs elem) {}
entries [elem] .border = true;
entries [elem] .borderColor = normal_border;
background of entries [elem] = true;
entries [elem] .backgroundColor = normal_background;
entries [elem] .textColor = normal_color;
entries [elem] .onSetFocus = function() {}
this.borderColor = focus_border;
this.backgroundColor = focus_background;
this.textColor = focus_color;
}
entries [elem] .onKillFocus = function() {}
this.borderColor = normal_border;
this.backgroundColor = normal_background;
this.textColor = normal_color;
}
}

Selection.setFocus (name_txt);

submit_mc.onRelease = function() {}
If (name_txt.text! = "& &)
email_txt. Text! = "& &
subject_txt. Text! = "& &
message_txt. Text! = '') {}
alert_txt. Text = ";

mainTL.play ();
dataSender.name = name_txt.text;
dataSender.email = email_txt.text;
dataSender.subject = subject_txt.text;
dataSender.message = message_txt.text;
dataReceiver.onLoad = function() {}
If (this.response == 'invalid') {}


mainTL.gotoAndStop (1);
alert_txt. Text = "Please enter a valid e-mail address."
} ElseIf (this.response == 'pass') {}
mainTL.gotoAndStop (4);
}
}
dataSender.sendAndLoad ("processEmail.php", dataReceiver, "POST");
} else {}
alert_txt. Text = "Please fill out all fields.';
}
}

And here is the PHP mailer:

<? PHP

$name = $_POST ['name'];
$email = $_POST ['email'];
$subject = $_POST ["subject"];
$message = $_POST ['message'];
$name = trim ($name);
$email = trim ($email);
$subject = StripSlashes ($subject);
$message = StripSlashes ($message);

# * / $toaddress = "[email protected]";

$toaddress = "[email protected] '


If (preg_match ("/ ^ [-_.]")) [[: alnum:]] + @((([[: alnum:]] |)) [[: alnum:]] (([[: alnum:]-] * [[: alnum:]]) \.) + (ad: ae: aero: af: ag |) AI | Al | am | one | AO | AQ | AR | ARPA | as | to | AU | AW | AZ | BA | BB | BD | being | BF | BG | BH | bi | biz | BJ | BM | NL | Bo | Br | BS | BT | BV | BW | by | BZ | CA | CC | CD | FC | CG | ch | This | CK | CL | cm | CN | co | com | COOP | CR | CS | CU | CV | CX | CY | CZ | of | DJ | DK | DM | DZ | EC | edu | EE | eg | huh | ER | | and | EU | fi | FJ | FK | FM | fo | en | GA | en | GD | GE | GF | GH | IM | GL | GM | GN | gov | GP | GQ | GR | GS | GT | Gu | GW | Gy | HK | HM | HN | HR | HT | Hu | ID | IE | It | in | Info | int | IO | IQ | IR | East | It | JM | Jo | JP | Ke | kg | KH | Ki | km | kN | KP | KR | kW | KY | KZ | the | lb | LC | Li | LK | LR | ls | Lt | read | LV | LY | my | MC | MD | mg | HD | millet | MK | ml | mm | MN | MB | MP | MQ. m. | Ms | Mt | MU | Museum | MV | MW | MX | my | MZ | NA | name | NC | don't | NET | NF | NG | Neither | NL | None | NP | Nr. NT | u n | NZ | OM | org | PA | PE | PF | PG | Ph | PK | PL | PM | PN | PR | Pro | PS | PT | PW | py | QA | Re | ro | ru | RW | his | SB | SC | SD | is | SG | sh | TR | SJ | SK | SL | SM | SN | so | RS | St | Su | SV | Sy | sz | TC | TD | TF | TG | th | TJ | TK | TM | TN | to | TP | tr | TT | TV | TW | TZ | au | ug | UK | UM | We | UY | UZ | will | VC | ve | VG | VI. VN | view | WF | WS | ye | YT | Yu | za | Zm | ZW) $ | (([0-9] [0-9]? |)) [0-1] [0-9] [0-9] | [2] [0-4] [0-9] | (([2] [5] [0-5]) \.) {3} ([0-9] [0-9]? |) [0-1] [0-9] [0-9] | [2] [0-4] [0-9] | ((' ([2] [5] [0-5])) $ / i ', $email)) {}
mail ($toaddress, $subject, $message, "in: $name < $email > \r\nReply-To: $email\r\nReturn-Path: $email\r\n" "");
$name = ";
$email = ";
$subject = ";
$message = ";
echo "response = spent."
} else {}
echo "response invalid =";
"exit";
}

? >


Any help would be greatly appreciated.

Thanks in advance.

Here's a rough turned to a solution that only requires a change in one of the functions in the Flash code, add the code highlighted in red... it just jumps a line at the end of the message and adds a line reflecting the State of the checkbox.  The Red code shows I replace the line of code: dataSender.message = message_txt.text;

submit_mc.onRelease = function() {}
If (name_txt.text! = "&)
email_txt. Text! = '' &&
subject_txt. Text! = '' &&
message_txt. Text! = '') {}
alert_txt. Text = ";

mainTL.play ();

dataSender.name = name_txt.text;
dataSender.email = email_txt.text;
dataSender.subject = subject_txt.text;

{if (maillist. Selected)}

dataSender.message = message_txt.text + "" \n\nAdd to the Mail-list: Yes ";"

} else {}

dataSender.message = message_txt.text + "" \n\nAdd to the Mail-list: No. ";"

}

dataReceiver.onLoad = function() {}
If (this.response == 'invalid') {}
mainTL.gotoAndStop (1);
alert_txt. Text = "Please enter a valid e-mail address."
} ElseIf (this.response == 'pass') {}
mainTL.gotoAndStop (4);
}
}
dataSender.sendAndLoad ("processEmail.php", dataReceiver, "POST");
} else {}
alert_txt. Text = "Please fill out all fields.';
}
}

Tags: Adobe Animate

Similar Questions

  • Arabic text just "?" when mailed using Flash contact form. There?

    Hi there, the guru of the Flash.

    I have this pros with a flash contact form sending Arabic text flash using php to my mailid. The Arab side come from? While the English part is really fine. Can someone help me with this? I ran all over the web for it but he hard work very well...

    This is my flash code-

    // Loading Variables and Settings
    stop();
    error_clip._alpha = 0;
    System.useCodepage = true;
    send_btn.onRelease = function() {
         my_vars = new LoadVars();
         my_vars.namex = name_txt.text;
         my_vars.email = email_txt.text;
         my_vars.msg = msg_txt.text;
    
         // If text fields are not blank the message will be sent
         if (my_vars.namex != "" and my_vars.email != "" and my_vars.msg != "") {
              my_vars.sendAndLoad("send_mail.php",my_vars,"POST");
              gotoAndStop(2);
              // Else if text fields are blank a warning message will appear
         } else {
              error_clip._alpha = 100;
         }
         // After the message is sent the user will be redirected to frame 3
         my_vars.onLoad = function() {
              gotoAndStop(3);
         };
    };
    // If you click on another field "All Fields Required" will dissapear
    name_txt.onSetFocus = email_txt.onSetFocus=msg_txt.onSetFocus=function () {
         if (error_clip._alpha != 0) {
              error_clip._alpha = 0;
         }
    };
    
    clr_btn.onPress = function() {
    
         msg_txt.text = "";
    
    };
    

    And here is the PHP part.

    <?php
    // Loading Variables
    $name = $_REQUEST["namex"] . "\n\n";
    $email = $_REQUEST["email"];
    $message = $_REQUEST["msg"] . "\n\n";
    // The \n character means New Line
    
    // Mixing all variables, including IP
    $full_message ="From ".$name.",  ".$email."    ".$message;
    
    // Remove the backslashes that appears when entering characters like " or '
    //$name = stripslashes($name); 
    //$email = stripslashes($email); 
    //$message = stripslashes($message); 
    
         $subject = "Tell Me!!";
         $from = $name;
         $headers  = "From: $from\r\n"; 
         $headers .= "CC: [email protected]\r\n";
    
         
    
    
         
          $headers .= "Content-Type: text/html; charset=utf-8"; 
          
          $body = $full_message;
    
         /*$body = "<html><head><title>Untitled Document</title><meta http-equiv=Content-Type content='text/html; charset=iso-8859-1'></head><table width=440 border=0 align=center cellpadding=6 cellspacing=1 bgcolor=#000000>  <tr bgcolor=#000000><td colspan=2 nowrap><font color=#FFFFFF size=2 face='MS Sans Serif'><B>ONLINE FEEDBACK</B></font></td>  </tr>";
         $body .= "<tr bgcolor=#FFFFFF><td width=32% nowrap><font size=2 face='MS Sans Serif'>Name<font size=1>:</font></font></td>    <td width='68%'><font size=2 face='MS Sans Serif'><B>" . $name . "</B></font></td></tr>";
         $body .= "<tr bgcolor=#FFFFFF><td width=32% nowrap><font size=2 face='MS Sans Serif'>E-mail/Website</font></td><td><font size=2 face='MS Sans Serif'><B>" . $email . "</B></font></td></tr>";
         $body .= "<tr bgcolor=#FFFFFF><td width=32% nowrap><font size=2 face='MS Sans Serif'>Message</font></td><td><font size=2 face='MS Sans Serif'><B>" . $message . "</B></font></td></tr>";
         $body .= "<tr><td nowrap valign=top> </td><td> </td></tr></table></body></html>";*/
         
    
         
         // Sending the mail
    // Note: Don't forget to change "[email protected]" to receive the mail from contact form
         mail("[email protected]", $subject, $body, $headers);
    
    ?>
    

    There were several probs like this online and I couldn't find the right solution. Can you please help me? The form works completely in the English text file. No probs in the code, but the Arab side is very delicate.

    Thank you very much in advance.

    In the text fields, do you have embeded the Arabic language?

  • I have not added rescue e-mail and I forgot my security question. How can I reset my security question

    I have not added rescue e-mail and I forgot my security question. How can I reset my security question

    I am also having same problem here in the Maldives, even we cannot contact apple Help Center. Someone please let us know how we can overcome this problem as soon as possible. I am not able to buy now. I created my user 5/7 years back.

  • I added my e-mail account current and most often used, but has any of my files from this account and any unwanted file.

    * Original title: e-mail files

    I just got my new computer with win10. I added my e-mail account current and most often used, but has any of my files from this account and any unwanted file. These files can be added?

    You cannot add folders to the Mail App. I suggest you to install an e-mail client. I use Thunderbird myself.

    Top 11 programs free email for Windows
    http://email.about.com/od/windowsemailclients/TP/free_email_prog.htm

  • How can I create a button to an e-mail form is completed

    I created a form using Adobe Acrobat DC.  I want to be able to provide a button so that the user can simply click on the button and have saved and sent by e-mail form

    out to our purchasing manager after they fill it out.  Is this possible?

    I managed to do it in the shape tool prepare.  Add a button (click the OK button in the top menu), and then double-click the button you have space in your pdf file.  Under Actions, select Action, scroll to submit a form.  Change the submit the form and add a mailto link: [email protected].  Check document PDF The Complete to send the entire form.

    Options: Put the text in the section of the label (such as submit or email).

    Save the PDF file.

    When your users click this button, it will prompt you to use their e-mail application and also give them an option to save the document.

    This is different from the distribution function which I hope to figure out soon.

  • I used an e-mail form badly my desktop application; How can I change it?

    I used an e-mail form badly my desktop application; How can I change it?

    Hello

    Please contact adobe help support:

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

  • I used him copy / paste to add several checkboxes on my form, but now in preview mode when I check the first box it automatically checks all the boxes.  How can I stop this from happening?

    I used him copy / paste to add several checkboxes on my form, but now in preview mode when I check the first box it automatically checks all the boxes.  How can I stop this from happening?

    For later use, it happened because your fields have the same field name, and fields with the same name automatically have the same value.

    So all you had to do was so each had a unique name and it would have worked, but using the command create several fields is preferable because it renames the fields for rename you them.

  • Is it possible to make a conditional checkbox in a form?

    Is it possible to make a conditional checkbox in a form? For example to check that OR not not both at the same time? i.e. If Yes is enabled you can not check no and vice versa?

    You need to add or change the code in the form. Try these:

    http://StackOverflow.com/questions/17599984/how-to-enable-a-disabled-checkbox-dynamically

    IPT http://StackOverflow.com/questions/16163507/Enabling-and-Disabling-CheckBoxes-with-javascr

    Thank you

    Sanjit

  • I don't receive e-mails form widget

    I do not receive e-mails form widget. I did everything what the document 'Troubleshooting form Widgets Muse' used on third-party servers is suggested, but still does not.

    Hi Spai pharmaceutical son,

    Your site is hosted on a third-party host? If Yes, then you will need to contact them and get more information on what is required from there end in order to send emails.

    - Abhishek Maurya

  • E-mail form

    Read the PDF of British Colombia document on charging and I want some clarification. There was one notes that web forms webBasic and webBasic + are "e-mail form.

    What exactly is the difference between web forms in the basic plan and the plan of action?

    For these plans the form that you just create information in a basic html email (cannot apply a template to him) emails and the information is not stored in the CRM as complete web custom shape is Lynda.

    AS the name it sends just the content of the form.

    Make sense?

  • Several checkboxes in a form

    I'm putting a small group of checkboxes in a form here-> www.hollisterairshow.com/helpusplan.php using the spry validation

    The form is for an air show and we ask visitors to the site, what day you're planning to come - Saturday, Sunday or "Saturday and Sunday. They must select a day and can select both. I use MySQL to store the results and have set up a table with multiple columns, those of this issue is called "Saturday" and "Sunday". If the site visitor selects Saturday, then the Saturday column should be 'Saturday' and that if they choose Sunday then Sunday column should "Sunday." When a column is selected not the content must be Null. When I test here is the result:

    The user selects Contents of column 'Saturday' Content of column "Sunday"
    Saturday only'on '.'on '.
    Sunday only"Sunday.""Sunday."
    Saturday and Sunday"Sunday.""Sunday."

    The code is shown below

    < p align = "left" > what days do you visit?

    < span id = "sprycheckbox1" >
    < label >
    < input type = "checkbox" name = "whichdays" id = "whichdays_0" / > Saturday

    < span class = "checkboxRequiredMsg" > please make a selection. </span >
    < / label >

    < input name = "whichdays" type = "checkbox" value = 'Sunday' id = 'whichdays_1' / > Sunday
    </span >

    < /p >

    I don't know what is happening here and would be really grateful for the help.

    Thank you.

    Tony

    You forgot to update the script to explain the new checkbox field names.

  • E-mail form values

    Hi guys,.

    I already started this process, but wanted to open as Frank... I got lost.

    Albert suggested a way for me to have a form of e-mail e-mail to selected recipients.  The process of having a dynamic list that contains the e-mail addresses and of course some boxes and then moving to a real e-mail form which gets the values for the dynamic list e-mail addresses. (if necessary).

    I created the dynamic list.  I now need to create the form that inherits the e-mail addresses of the list.  Just create a form of regular contact with the Wizard update of records? And then tell send Email to get its values from the previous list? (If yes - how!)

    Albert tried to explain this to me a few weeks ago and has been great, but I have a problem - like as much input as possible.

    If something must explain more please let me know, this is my last hurdle

    Hi Nathan,

    So the reason why your page refreshes just rather than the sendcvform.php is you broke the dynamic list. As you have deleted items you deleted something that shouldn't have been deleted. I tried to manage your page via the "Manage the dynamic list" option and there were a lot of mistakes. So I had to remove all the code from your list dynamic and rebuild. He has worked after that, you may want to consider everything works before breaking apart to get the form to have your desired appearance. So for the current solution delete all dynamic list code and rebuild the dynamic list. It took only a few minutes, then you can test your form and get all the workers.

    When I created the initial list and the form and then you release the idea I had the idea that you get the concept and work your magic from there. DWinfo is to give advice on his last post, you could make your list like this. The only advantage of a dynamic list is the ability to sort and filter option. If you want these functions then go with a simple list. And really you need to get the concept as DWinfo suggested before going willy nilly with code, I present to you.

  • How to get the 'Topic' and 'Message' text the default Flash of MS Outlook mail form?

    Hello

    I have the following code which works fine except that I can't get the user has typed form flash for my e-mail application (MS Outlook) data. How to change the following code?

    In the code:

    1) for-> This field is correct since this e-mail ID does not change

    2) cc-> this filed is also correct since no change will be in the identification of email

    3) topic-> which may not always be as "Feedback", users might want to change the subject

    Whant I would add more is here:

    (1)-> this text to be retrieved from 'fromText.txt' text entry box

    2) message-> this text to be retrieved from 'MessageText.txt' text entry box

    1 button event listener
    SendMail.addEventListener (MouseEvent.CLICK, SendEMail);

    2. the SendMail function open e-mail application to send e-mail.

    function SendEMail(event:MouseEvent):void {}
    var email: URLRequest = new URLRequest ("mailto:[email protected][email protected] & topic = Feedback");
    navigateToURL (email, "_blank");
    }

    Thanks in advance for any help.

    Kind regards.

    use:

    var email: URLRequest = new URLRequest ("mailto:[email protected]?") [email protected]& topic = "+ subjectText.text +" & body = from: "+ fromText.text+"\n\n"+MessageText.text);

  • Flash-PHP form Mail

    Hello

    I'm working on a Flash form, found here. It uses a PHP script to the post office and the message passes through, but most of the fields is not included in the message. Here is the ActionScript code that came with the model:

    No, I don't know how to fix this. It's such a mess, I think you're better off at nine:

  • After you have added a contact sites form Web css is messed up

    I've added a contact form that works perfectly, but now all my website content is moved and is no longer in place as it should.

    Any help is appreciated, thanks!

    http://dkphotos.NET/contact/contact.html

    HTML:

    <! doctype html >

    < html >

    < head >

    < link rel = "shortcut icon" href = "favicon.ico" > "

    "< link rel ="icon"type =" image/gif"href ="... /... "/ animated_favicon1.gif" >

    < title > < /title > Contact

    < meta charset = "UTF-8" >

    < link rel = "stylesheet" type = "text/css" href = "layout.css" >

    <! - latest jQuery core library - >

    " < script src =" http://code.jQuery.com/jQuery-latest.min.js ">

    < /script >

    "< link href="assets/css/contact.css "rel ="stylesheet"type =" text/css"/ > <! - AJAX Contact form Stylesheet - >

    "< script type =" text/javascript"src="//code.jquery.com/jquery-latest.js "> < / script >

    "< script type =" text/javascript"src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js "> < / script >

    "< script type =" text/javascript"src="assets/js/jquery.jigowatt.js "> < / script > <! - submit form AJAX - >

    "< script src="js/jquery-1.7.2.min.js "> < / script >

    < style type = "text/css" >

    a {}

    font size: 15px;

    Color: #777777;

    }

    body, td, th {}

    font size: 15px;

    color: #444444;

    do-family: 'slab of Josefin;

    }

    a: link {}

    text-decoration: none;

    color: #444444;

    }

    a: visited {}

    text-decoration: none;

    color: #444444;

    }

    a: hover {}

    text-decoration: none;

    color: #60baec;

    }

    a: active {}

    text-decoration: none;

    color: #444444;

    }

    < / style >

    < script type = "text/javascript" >

    function MM_preloadImages() {//v3.0

    var d = document; If (d.images) {if(!d.MM_p) d.MM_p = new Array();

    var i, j is d.MM_p.length, a = MM_preloadImages.arguments; for (i = 0; i <.) Length; i ++)

    If (a [i].indexOf("#")! = 0) {d.MM_p [j] = new Image; d.MM_p [j ++] .src = a [i] ;}}

    }

    function MM_swapImgRestore() //v3.0 {}

    var i, x = offline. MM_sr; for (i = 0; a & & I <.) Length & & (x = a [i]) & & x.oSrc; i ++) x.src = x.oSrc;

    }

    function MM_findObj (n, d) {//v4.01

    var p, i, x;  if(!d) d = document; If ((p = n.IndexOf ("?")) > 0 & & parent.frames.length) {}

    d = parent.frames [n.Substring(p+1)] .document; n = n.Substring (0, p) ;}

    If (!) () x = d [n]) & & copyrights) x = d.all [n]; for (i = 0;! x & & i < d.forms.length; i ++) x = d.forms [i] [n];

    for (i = 0;! x & & d.layers & & I < d.layers.length; i ++) x = MM_findObj (n, d.layers [i] .document);

    If (! x & & d.getElementById) x = d.getElementById (n); Return x;

    }

    function MM_swapImage() {//v3.0

    var i, j = 0, x, a = MM_swapImage.arguments; document. MM_sr = new Array; for (i = 0; i <(a.length-2); I += 3).

    If ((x = MM_findObj (a [i]))! = null) {document. MM_sr [j ++] = x; if(!x.oSrc) x.oSrc = x.src; x.SRC = a [i + 2] ;}

    }

    < /script >

    < style >

    UL {}

    list-style-type: none;

    margin: 0;

    padding: 0;

    overflow: hidden;

    }

    Li {}

    float: right;

    }

    a {}

    display: block;

    font size: 15px;

    color: #444444;

    Police-weight: 400;

    }

    Li {}

    margin-right: 30px;

    }

    body, td, th {}

    Police-family: josefin-slab;

    make-style: normal;

    Police-weight: 400;

    font size: 15px;

    color: #444444;

    }

    a: link {}

    text-decoration: none;

    }

    a: visited {}

    text-decoration: none;

    color: #444444;

    }

    a: hover {}

    text-decoration: none;

    color: #60baec;

    }

    a: active {}

    text-decoration: none;

    color: #444444;

    font size: 15em;

    Police-family: josefin-slab;

    make-style: normal;

    Police-weight: 400;

    }

    < / style >

    <!-the following script tag downloads a font of Adobe Edge Web server fonts to use in the web page. We recommend that you do not modify it.-->

    < script > var __adobewebfontsappname__ = "dreamweaver" < /script >

    " < script src =" http://use.edgefonts.NET/Josefin-slab:N1, N4:default.js "type =" text/javascript"> < / script > "

    < / head >

    < div class = "wrapOverall" >

    < body text = "#444444" link = "#444444" vlink = "#60baec" alink = "#444444" >

    < div class = 'container' id = "header container" >

    "" "< div class ="header"> < a href ="... / Home/Home.html "> < img src =" images/Home - Page_03.png"name ="Logo"width ="448"height ="69"class ="logo"id ="Logo"onMouseOver =" MM_swapImage ("Logo","' images/home_03-roll - over.png', 1) ' Mm_swapimgrestore ' border = '0' / > < /a > < / div >

    < div class = "navMain" >

    < div class = "navMain" >

    < /li >

    < ul class = "navBar".

    style = "width: 530px;" float: right; Police-weight: 400; Police-family: josefin-slab; make-style: normal; ">

    < li > < a href = "Contact.html" > CONTACT < /a > < /li > ""

    < li > < a href = "" > BLOG < /a > < /li >

    "< li > < a href ="... / About/About.html "> ON < /a > < /li >"

    < li > < a href = "" > PRICING < /a > < /li >

    "< li > < a href ="... / Portfolio/Portfolio.html "> PORTFOLIO < /a > < /li >"

    "< li > < a href ="... / Home/Home.html "> HOME < /a > < /li >"

    < /ul >

    < / div > <! - END navMain - >

    < / div > <! - logo END - >

    < / div > <!--END header-->

    <! - MAIN CONTENT - >

    < div id = "Container" >

    < div id = "ContentBox2" >

    < p > < div id = "rightContact" >

    < id section 'contact' = >

    < header >

    < h1 > < span style = "do-size: 20px;" do-family: josefin-slab; make-style: normal; make-weight: 400; "> email: </span > < a href =" mailto:[email protected]? " Subject = DKphotos"target ="_top"style =" do-family: josefin-slab; " make-style: normal; Police-weight: 400; do-size: 18px; line-height: 1.80em "> "

    [email protected] < /a > < / h1 >

    < p > < span style = "do-size: 20px;" Police-family: josefin-slab; make-style: normal; Police-weight: 400; "> mobile: </span > < a href =" "such: + 447988385697" style = "font family: josefin-slab; make-style: normal; Police-weight: 400; do-size: 18px; line-height: 1.80em "> 447988385697 < /a > < /p > +"

    < p > < span style = "do-size: 20px;" do-family: josefin-slab; make-style: normal; make-weight: 400; "" > Follow me on: < a href = "https://www.facebook.com/DKphotos.net"target = "_top" style ="font family: josefin-slab; make-style: normal; make-weight: 400; do-size: 18px; line-height: 1.80em" > "

    Facebook < /a > < /p >

    < / header >

    < brand id = "message" > < / mark >

    "< form method ="post"action="/Contact/classes/contact.php "name ="contact form"id = 'contact form' autocomplete ="on">

    < fieldset >

    the legend <>contact information < / legend >

    < div >

    < label = 'name' accesskey 'U' = > your name < / label >

    < input name = "name" type = 'text' required id = placeholder "name" = "Enter your name" / >

    < / div >

    < div >

    < label = 'email' accesskey 'E' = > Email < / label >

    < input name = "email" type = "email" id = "email" placeholder = "Enter your e-mail" pattern = "^ [A-Za-z0-9] (([Zinsou." \-] ? [a-zA-Z0-9]+)*)@([A-Za-z0-9]+) (([\. \-]?))] (([a-zA-Z0-9] +) *). ([A-Za-z] {2,}) $' required / >

    < / div >

    < div >

    < label = 'phone' accesskey = "P" > < span style = "do-size: 18px;" Police-family: josefin-slab; make-style: normal; Police-weight: 400; "> Phone </span > < small > (optional) < / small > < / label >

    < input name = "phone" type = "as" id = 'phone' placeholder = 'Enter your phone number' / >

    < / div >

    < / fieldset >

    < fieldset >

    the legend <>your comments < / legend >

    < div >

    < label = "subject" accesskey = "S" > subject < / label >

    < select name = "subject" id = "the subject" required >

    < option value = 'Booking' > booking < / option >

    General information request < option value = "General information" > < / option >

    < option value = "Website" > website < / option >

    < option value = "Other" > other < / option >

    < / select >

    < / div >

    < div >

    < label = 'comments' accesskey 'C' = > comments < / label >

    < = cols 'comments' textarea name = "40" rows = "3" id = placeholder 'Comments' = 'enter your comment"spellcheck ="true"required > < / textarea >

    < / div >

    < / fieldset >

    < input type = 'submit' class = "submit" id = "submit" value = "Submit" / >

    < / make >

    < / section >

    < / div > <!--end Box2 - >

    < / div > <! - end container - >

    <! - END MAIN CONTENT - >

    < div id = "containerFooter" >

    < div id = "Box1" style = "font family: 'Josefin slab'" >

    < p > all content < span style = "do-size: 20px" > to </span > 2013 DKphotos < /p >

    < / div > <!--end Box1 - >

    < div id = "Box2" >

    < p > < script type = "text/javascript" >

    BeginOAWidget_Instance_2149022: #OAWidget

    var urlToLike = ' http://www.facebook.com/DKphotos.net';

    If (urlToLike == ") {}

    urlToLike = window.location.href;

    }

    urlToLike = encodeURIComponent (urlToLike);

    var font = encodeURIComponent ('arial');

    document.write (' ' < iframe src = "http://www.facebook.com/widgets/like.php?locale=en_US & href = ' + urlToLike + ' & layout = button_cou nt & show_faces = false & width = 450 & height = 150 & action = like & font =" + police + & colorscheme = light"scrolling =" "frameborder ="0"allowTransparency ="true"style =" border: none; ") border-color: #ffffff; overflow: hidden; width: 450; height: 150 "(>< / iframe >') "

    EndOAWidget_Instance_2149022

    < /script >

    < / div > <!-END fbLike-> < /p >

    < / div > <!--end Box2 - >

    <! - float clearing - >

    < hr class = "compensation" / >

    < / div > <! - end container - >

    < / div > <! - END wrapOverall - >

    < / body >

    < / html >

    CSS:

    @charset "utf-8";

    / * CSS document * /.

    {body

    background - image: URL(images/bg_body.jpg);

    background-color: #ffffff;

    background-attachment: fixed;

    background-position: top;

    }

    {.wrapOverall}

    Width: 1920px;

    display: inline;

    }

    {} ul.navBar

    margin: 0px 0px 18px 0px;

    padding: 0;

    white-space: nowrap;

    Width: 950px;

    Overflow-x: auto;

    Display: inline-block;

    }

    ul.navBar li {}

    Display: inline;

    }

    {img.logo .header

    float: left;

    margin: 0px 15px 0px 15px;

    }

    . Container {}

    min-width: 1050px.

    }

    #Container {}

    do-family: Verdana, Arial, Helvetica, without serif.

    border: 0;

    Width: 900px;

    Auto margin: 0; / * centered * /.

    overflow: hidden; / * float containment * /.

    }

    #Container {}

    Clear: both;

    Width: 100%;

    min-width: 900px;

    }

    {#ContentBox2}

    Width: 900px;

    min-height: 550px;

    margin-bottom: 200px;

    border: 0;

    / * to reduce the float drop issues in IE * /.

    dressing: break-Word;

    left margin: auto;

    margin-right: auto;

    }

    / * Clear floats after boxes * /.

    {.clearing}

    Clear: both;

    visibility: hidden;

    line-height: 0;

    font-size: 1px;

    Display: block;

    }

    {#containerFooter}

    Width: 100%;

    min-width: 650px;

    Max-width: 100%;

    }

    {#containerFooter}

    do-family: Verdana, Arial, Helvetica, without serif.

    border: 0;

    Auto margin: 0; / * centered * /.

    overflow: hidden; / * float containment * /.

    }

    #Box1 {#Box2}

    Width: auto;

    min-height: 10px;

    border: 0;

    / * to reduce the float drop issues in IE * /.

    dressing: break-Word;

    }

    #Box1 {margin left: 8px; float: left ;}}

    #Box2 {margin left: 20px; float: left ;}}

    / * Clear floats after boxes * /.

    {.clearing}

    Clear: both;

    visibility: hidden;

    line-height: 0;

    font-size: 1px;

    Display: block;

    }

    {#containerFooter}

    Width: 100%;

    float: left;

    }

    {#containerFooter}

    position: fixed;

    low:-145px;

    z index: 500;

    background-color: #FFF;

    }

    From the line # 131 in HTML code mode, you have this:

    Which should be changed to this:

    ======================

    On the #142 line, where you have this:

      Change to this:

        If problems arise in the future, validate your code & difficulty reported errors.

        http://validator.w3.org/

        Nancy O.

      Maybe you are looking for