My contact form is not working.

Here is my html code for my contact form which is located in Contact.htm :
<form method="POST" action="contact.php">
<p>Name:<br>
<input type="text" name="Name:">
<p>Company:<br>
<input type="text" name="Company:">
<p>Phone:<br>
<input type="text" name="Phone:">
<p>Email:<br>
<input type="text" name="Email:">
<p>Comments:<br>
  <textarea name="Comments:" cols="45" rows="5"></textarea>
<p><input type="submit" name="submit" value="Submit">
</form>
Here is my code which is located in my php file contact.php :
<?php
mb_http_input("UTF-8");
mb_http_output("UTF-8");
$EmailFrom = Trim(stripslashes($_POST['EmailFrom']));
$EmailTo = "[email protected]";
$Subject = "Web Contact Form";
$Name: = Trim(stripslashes($_POST['Name:']));
$Company: = Trim(stripslashes($_POST['Company:']));
$Phone: = Trim(stripslashes($_POST['Phone:']));
$Email: = Trim(stripslashes($_POST['Email:']));
$Comments: = Trim(stripslashes($_POST['Comments:']));
$validationOK=true;
if (Trim($EmailFrom)=="") $validationOK=false;
if (!$validationOK) {
  print "<meta http-equiv=\"refresh\" content=\"0;URL=error.htm\">";
  exit;
$Body = "";
$Body .= "Name:: ";
$Body .= $Name:;
$Body .= "\n";
$Body .= "Company:: ";
$Body .= $Company:;
$Body .= "\n";
$Body .= "Phone:: ";
$Body .= $Phone:;
$Body .= "\n";
$Body .= "Email:: ";
$Body .= $Email:;
$Body .= "\n";
$Body .= "Comments:: ";
$Body .= $Comments:;
$Body .= "\n";
$success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>");
if ($success){
  print "<meta http-equiv=\"refresh\" content=\"0;URL=ok.htm\">";
else{
  print "<meta http-equiv=\"refresh\" content=\"0;URL=error.htm\">";
?>
The error I get when I submit the information on the form is:
Parse error: syntax error, unexpected ':' in D:\Hosting\5199406\html\contact.php on line 8
Line 8 = $Name: = Trim(stripslashes($_POST['Name:']));
I actually took this line out to see if it would work and then it gave me an error that Line 9 was not working...
HELP PLEASE!

Hello,
Please try to read this tutorial hoping it may help
Creating a Contact form in Dreamweaver from scratch
In this tutorial we will build a contact form with Dreamweaver CS3 from scratch, our application consists of 2 pages, The first page contains the contact form, and the second page contains the form submission action and the thank you message. Also we will use Dreamweaver form validation behavior to validate the form. The Validate Form behavior checks the contents of specified text fields to ensure that the user has entered the correct type of data.
Best Regards
Waleed Barakat
Developer-Online Creator and programmer

Similar Messages

  • My 'contact' form is not working.  When I send a test contact it returns to my adobe email account this: "Contact Form" has a new form submission.

    My 'contact' form is not working.  When I send a test contact it returns to my adobe email account this:
    "Contact Form" has a new form submission.

    What exactly is not working ? As you have mentioned form submission notification is received in your email account so form process is working I believe but you want the notifications to go to another email account I think.
    Have you added the email address in "Email to" field in form options ? If yes and then also you are not receiving the form , then please provide me the site url and post a screenshot or form with option box open.
    Thanks,
    Sanjit

  • Information / Contact Form is Not Working...

    I have a form on a website I am designing that I can not seem to get to work.
    Here is the html part of the form:
    <div id="form">
    <div align="center"><img src="images/contact_form.jpg" />
    </div>
    <p align="center" class="style10">Fill out our form and one of our associates will contact you within 24 hours<br/>or<br/>
       call<span class="style19"> 1-800-605-983</span><span class="style19">1</span> for assistance.</p>
    <br/>
    <form style="font-size:15px; font-family:"Times New Roman" action="form.php" method="post">
    <span class="style9">First Name:</span><br/>
    <input type="text" size="25" name="FirstName" /><br/><br/>
    <span class="style8">Last Name:</span><br/>
    <input type="text" size="25" name="LastName"/><br/><br/>
    <span class="style8">Address:</span><br/>
    <input type="text" size="25" name="Address" /><br/><br/>
    <span class="style8">Date of Birth:</span><br/>
    <input type="text" size="25" name="DateofBirth" /><br/>
    <span class="style8"><br/>
    Phone:</span><br/>
    <input type="text" size="25" name="Phone" /><br/><br/>
    <span class="style8">Alt Phone:</span><br/>
    <input type="text" size="25" name="AltPhone" /><br/><br/>
    <span class="style8">Best Call Time:</span><br/>
    <select name="BestCallTime">
    <option value="Morning">Morning</option>
    <option value="Afternoon">Afternoon</option>
    <option value="Evening">Evening</option>
    </select>
    <br/><br/>
    <span class="style8">Email:</span><br/>
    <input type="text" size="25" name="Email" /> <br/>
    <span class="style8"><br/>
    Total Debt:</span><br/>
    <select name="TotalDebt">
    <option value="$10,000 - $30,000">$10,000 - $30,000</option>
    <option value="$30,000 - $60,000">$30,000 - $60,000</option>
    <option value="$60,000 - $90,000">$60,000 - $90,000</option>
    <option value="$90,000 - $120,000">$90,000 - $120,000</option>
    <option value="$120,000 - $150,000">$120,000 - $150,000</option>
    <option value="$150,000 - $180,000">$150,000 - $180,000</option>
    <option value="$180,000 - $210,000">$180,000 - $210,000</option>
    <option value="$210,000 - $240,000">$210,000 - $240,000</option>
    <option value="$240,000 - $270,000">$240,000 - $270,000</option>
    <option value="$270,000 - $300,000">$270,000 - $300,000</option>
    <option value="$300,000 +">$300,000 +</option>
    </select>
    <p class="style23">(Please note there is a $10,000 minimum).</p>
    <br/><br/>
    <span class="style8">Comments: </span><br/>
    <textarea name="Comments" cols="22" rows="7"> </textarea><br/><br/>
    <input type="submit" value="Submit" />
    </form>
    Now here is the php document:
    <?php
    $FirstName = $_POST['FirstName'];
    $LastName = $_POST['LastName'];
    $Address = $_POST['Address'];
    $Date_of_Birth = $_POST['DateofBirth'];
    $Phone = $_POST['Phone'];
    $Alt_Phone = $_POST['AltPhone'];
    $Best_Call_Time = $_POST['BestCallTime'];
    $Email = $_POST ['Email'];
    $Total_Debt = $_POST['TotalDebt'];
    $Comments = $_POST ['Comments'];
    echo "Returned Information:<br><br>".$FirstName."<br>".$LastName."<br>".$Address."<br>".$Date_of_Birth." <br>".$Phone."<br>".$Alt_Phone."<br>".$Best_Call_Time."<br>".$Email."<br>".$Total_Debt."<b r>".$Comments."<br>";
    mail( ' [email protected] ' , ' basic inquiry ' , $text, ' From:  '  . $FirstName . ' < ' . $Email . ' >'    );
    header( ' Location: step3.html ' );
    ?>
    I have looked over many tutorials and I can not seem to find my mistake...PLEASE HELP.
    Thank you.

    HTML CODE:
    <div id="form">
    <div align="center"><img src="images/contact_form.jpg" />
    </div>
    <p align="center" class="style10">Fill out our form and one of our associates will contact you within 24 hours<br/>or<br/>
       call<span class="style19"> 1-800-605-983</span><span class="style19">1</span> for assistance.</p>
    <br/>
    <form style="font-size:15px; font-family:"Times New Roman" action="form.php" method="post">
    <span class="style9">First Name:</span><br/>
    <input type="text" size="25" name="FirstName" /><br/><br/>
    <span class="style8">Last Name:</span><br/>
    <input type="text" size="25" name="LastName"/><br/><br/>
    <span class="style8">Address:</span><br/>
    <input type="text" size="25" name="Address" /><br/><br/>
    <span class="style8">Date of Birth:</span><br/>
    <input type="text" size="25" name="DateofBirth" /><br/>
    <span class="style8"><br/>
    Phone:</span><br/>
    <input type="text" size="25" name="Phone" /><br/><br/>
    <span class="style8">Alt Phone:</span><br/>
    <input type="text" size="25" name="AltPhone" /><br/><br/>
    <span class="style8">Best Call Time:</span><br/>
    <select name="BestCallTime">
    <option value="Morning">Morning</option>
    <option value="Afternoon">Afternoon</option>
    <option value="Evening">Evening</option>
    </select>
    <br/><br/>
    <span class="style8">Email:</span><br/>
    <input type="text" size="25" name="Email" /> <br/>
    <span class="style8"><br/>
    Total Debt:</span><br/>
    <select name="TotalDebt">
    <option value="$10,000 - $30,000">$10,000 - $30,000</option>
    <option value="$30,000 - $60,000">$30,000 - $60,000</option>
    <option value="$60,000 - $90,000">$60,000 - $90,000</option>
    <option value="$90,000 - $120,000">$90,000 - $120,000</option>
    <option value="$120,000 - $150,000">$120,000 - $150,000</option>
    <option value="$150,000 - $180,000">$150,000 - $180,000</option>
    <option value="$180,000 - $210,000">$180,000 - $210,000</option>
    <option value="$210,000 - $240,000">$210,000 - $240,000</option>
    <option value="$240,000 - $270,000">$240,000 - $270,000</option>
    <option value="$270,000 - $300,000">$270,000 - $300,000</option>
    <option value="$300,000 +">$300,000 +</option>
    </select>
    <p class="style23">(Please note there is a $10,000 minimum).</p>
    <br/><br/>
    <span class="style8">Comments: </span><br/>
    <textarea name="Comments" cols="22" rows="7"> </textarea><br/><br/>
    <input type="submit" value="Submit" />
    </form>
    PHP CODE:
    <?php
    $FirstName = $_POST['FirstName'];
    $LastName = $_POST['LastName'];
    $Address = $_POST['Address'];
    $Date_of_Birth = $_POST['DateofBirth'];
    $Phone = $_POST['Phone'];
    $Alt_Phone = $_POST['AltPhone'];
    $Best_Call_Time = $_POST['BestCallTime'];
    $Email = $_POST ['Email'];
    $Total_Debt = $_POST['TotalDebt'];
    $Comments = $_POST ['Comments'];
    $msg = "First Name: " . $FirstName . "\n";
    $msg .= "Last Name: " . $LastName . "\n";
    $msg .= "Address: " . $Address . "\n";
    $msg .= "Date of Birth: " . $Date_of_Birth . "\n";
    $msg .= "Phone: " . $Phone . "\n";
    $msg .= "Alt Phone: " . $Alt_Phone . "\n";
    $msg .= "Best Call Time: " . $Best_Call_Time . "\n";
    $msg .= "Email: " . $Email . "\n";
    $msg .= "Total Debt: " . $Total_Debt . "\n";
    $msg .= "Comments: " . $Comments . "\n";
    $headers = "From: " . $Email . "\r\n" .
        "Reply-To: " . $Email . "\r\n";
    mail('[email protected]', 'basic inquiry', $msg, $headers);
    header('Location: confirm.html');
    ?>

  • This one is for Nancy o contact form does not work for me. please help

    http://alpenawebdesigns.com/form1.html
    for css i have form1.css and for php i have vsi2.php
    when i submit the form i get a 404 error and requested url/form-to-email.php not  found
    i like the form and for the life in me i can not see the obvious
    thank you
    allen macfalda

    I changed the vsi2.php to form-to-email.php and it appears to work exceppt that it does not send a return email
    allen macfalda

  • HTML 5 Contact Form "Placeholder" instead of label makes form validation not work

    Hi,
    I am trying to implement a HTML 5 contact form which uses a "placeholder" within the field instead of a label. But now the form validation does not work.
    The site is at http://www.partnerrealestate.ch/avenuedefrance23/index.html and it is not using any workflows from BC as the person receiving it is an external person and the process does not require a workflow.
    Would appreciate any input into this.
    Kindest Regards,
    corina

    There is no label on input fields. The form does not work because you have edited the names. BC needs the ID and names to be as it is issue when you create the form so it knows what to use for the validation and what information to pass into the database.
    So where you have edited these, you need to restore those.
    You have some invalid html on some input's as well one has input="" inside of it when rendered so that is not right.
    It is not to do with placeholder use. So fix up your HTML errors, correct the name and ID changes and it will work fine.

  • Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?

    Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?

    Hi Aish
    I wanted to check the following, but the URL is not found, you have another one?
    thanks
    Nicole
        4. Visit http://my-site.com/scripts/form_check.php in a web browser and make sure you see all green checkmarks. If some items do not display green checkmarks that means that the hosting server is not configured correctly to allow the Form widgets to send email messages to the address you've specified.
                    Contact your web-hosting provider about the server configuration problem. Describe the items that are not marked as green in the form check page, so that they can help you set up the servers to use the correct settings.
    Il giorno 9-set-2014, alle ore 16:11, Aishvarya Raj Rastogi <[email protected]> ha scritto:
    Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?
    created by Aishvarya Raj Rastogi in Help with using Adobe Muse CC - View the full discussion
    Hi Nicole,
    What is the "From" email address in your form?
    Also, have you checked the spam folder?
    Please check the following posts as well :
    https://forums.adobe.com/docs/DOC-3581
    Re: PHP mail may be disabled or incorrectly configured on the web server.
    Regards,
    Aish
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6714281#6714281
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Muse contact form is not sending emails.

    Muse site contact form is not sending emails.  I perform a form check using this link http:/my_site.com/scripts/form_check.php.  It is giving the message that SQL configuration problem.
    Please help to solve this.

    I posted a very similar issue into the bugs forum. "
    Email form submit not sending to GoDaddy and Yahoo hosted email accounts"
    I have tested the emails across various forms and it works but does not using the Muse form widget. I strongly believe this is an Adobe Muse issue and needs further support from Adobe. In the mean time I have begun using Jot Form on my sites (jotform.com)

  • Search in contacts app is not working in iPhone

    Search in my contacts app is not working, any ideas?

    Hey zoliadler,
    Thanks for the question. I understand that you are experiencing issues with your Contacts application. To troubleshoot these issues, let’s force the app to close, then restart your device:
    iOS: Force an app to close
    http://support.apple.com/kb/HT5137
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/HT1430
    Thanks,
    Matt M.

  • Form is not working of multiple form check boxs, source posted. HELP.

    Form is not working of multiple form check boxs, source posted. HELP.
    I'm trying to have golive form be able to check one, two or all of the options in Graphics field.
    As is it will only post results from the last checked box.
    Here's the page
    http://www.perfection-press.com/Pages/ContactForm.html
    Here's where source in golive has scanning,design,filesupplied.
    [code removed to fix forum topic display]

    Since the checkboxes all have the same name, the values are over-writing each other when being passed to the PHP script. The best way to fix that is to add a pair of empty square [] brackets after the checkbox names, so make the names "graphics[]" instead of "graphics". That tells PHP that the values are being passed as a list (an array) instead of a single value. As long as your processing script knows what to do from there (and it does), should solve the problem.
    By the way, I noticed that two of the checkboxes were named "graphics" and the other was "graphic" (singular). You'll want to fix that too so they're all the same.

  • My start and end form is not working .

    My start and end form is not working .
    It showing error that start form in invalid.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
       DIALOG                            = 'X'
       FORM                              = 'YSAMPLE1'
       LANGUAGE                          =  SY-LANGU.
    loop at itab1.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = '525'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'MAIN'.
    endloop.
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
       FORM                   = 'ysample1'
      LANGUAGE               = ' '
       STARTPAGE              = 'next'.
       CALL FUNCTION 'END_FORM'.
    Thanks and regards
    Mave
    CALL FUNCTION 'CLOSE_FORM'.

    You should use END_FORM and START_FORM when you want to say to your system:
    - OK! Here document print begins and there it finishes.
    Infact you can print many document opening the sapscript only one time:
    CALL OPEN_FORM
    LOOP MY_DOCUMETS.
    Here the print of document starts:
      CALL START_FORM
      CALL WRITE_FORM
      CALL WRITE_FORM
    Here the print of document finishes
      CALL END_FORM
    ENDLOOP.
    CALL CLOSE_FORM.

  • Forms Personalization not working after R12 upgrade

    Hi,
    We have recently upgraded to R12. We have forms personalizations on the People, Enter and Maintain form and this is not working now after the R12 upgrade.
    I went to one of the form personalizations and Validated and Applied again but it still did not work. I also created a new one but had no success with that either.
    Any ideas how to get this working again ? Is there something extra that needs to be done for R12?
    Thanks
    Regards,
    Shalantha

    Pl indicate which version of R12 and on what form you had the personalization in the previous version. Have you checked FND_FORM_CUSTOM_% tables to ensure that the personalization survived the upgrade ?
    Pl see if these MOS Docs can help
    Forms Personalizations Unavailable After Upgrade To 12.1.x          (Doc ID 1245864.1)
    Forms Personalization Not Working After Upgrade To R12.1.3          (Doc ID 1309458.1)
    Form Personalization Value Field Not Being Retained After Upgrade          (Doc ID 1266265.1)
    Do Personalizations Holdup After A Patch Is Applied? (Doc ID 1286576.1)
    HTH
    Srini

  • Form does not work

    Hi
    I use Adobe Livecycle Designer7.0 English and Acrobat7.0.8 Japanese. I made forms to upload to Workflow Server. One form I made does not work at all when the form is opened in the Form Manager.
    It is strange that the PDF preview of the Designer works well.
    1. Page Counter
    In the master page of the form I set a page counter field from the custom library. In the preview it works well but when the form is opened from Form Manager it does not work. It looks like "Page ##/##".
    2. Font is not shown
    I put a button in the form. The font of the button is set to "MS UI Gothic", but when the form is opened from Form Manager the font of the button is "KozukaMincho".
    3. JavaScript does not work
    I wrote javascript to change the caption of fields like this.
    ----- form1.#subform[0].Button1::click - (Javascript, client)
    FieldA.rawValue = "test";
    FieldB.rawValue = "test2";
    This script does not work too when the form is opened.
    These issues are basic but I do not know where is wrong. Because no error message appears when I test the form in the PC.
    Please advise about these issues.
    Thanks,
    Akira

    Hi Jared,<br /><br />I am very glad to read your reply. <br />I added a button with the script you wrote in previous reply and found that Form Manager changed the root tag. <br /><br />The xsd file I define to the data is like this<br /><br />b <Message>  //rootnode name <br /><br /> <Heade></Header><br /> <Contents><br />  <FieldA></FieldA><br />  ......<br /> </Contents><br /> <Footer><Footer><br /></Message><br /><br />So, I set the structure of the form like this.<br /><br />b <Message>          //This is name of contents area<br /><br /> <Header></Header> //Subform name<br /> <Contents>        //Subform name<br />  <FieldA></FieldA><br />   ......<br /> </Contents><br /> <Footer></Footer> // Subform name<br /></Message> <br /><br />But the saveXML script write out like this:<br /><br />b <fields><br /><br /> <Header></Header><br /> <Contents><br />  <FieldA></FieldA><br />  ......<br /> </Contents><br /> <Footer></Footer><br /></fields> <br /><br />So I changed all of the Javascript using relative path and I upload this form again to the FM, but this form does not work...<br />I am not sure that it must be the same name between the rootnode of the xsd file and the name of the contents area. <br /><br />Jared and all, would you let me know whatever you find about this issues.<br /><br />Best regards,<br />Akira

  • AS2 contact form and php - works fine but only sends half of the text in the comments field ???

    hi all - i have an AS2 contact form using php to send the info to my email address - it all works fine except this ..... rather than having an empty comments box in the flash movie i had added a whole bunch of feedback questions that the user can comment yes/no to in the comments box (my feedback questions were added into the input text box in cs3 so are there when the user opens the contact page .. i have set the maximum characters to 10000 so no worries that its that that is stopping it all coming through in the email ..... basically when i go to my form online and send it i get it through as an email but with only three quarters of the feedback text in it ...... i have tried a zillion ways a round this, tried other contact forms and php and always end up with the same problem ... any ideas any one ?
    this is the AS....
    stop();
    a =0;
    function validate () {
        if (from.length>=7) {
            if (from.indexOf("@")>0) {
                if ((from.indexOf("@")+2)<from.lastIndexOf(".")) {
                    if (from.lastIndexOf(".")<(from.length-2)) {
                        a = 1;
                        // email is fine
    function formcheck () {
        validate ();       
        trace(a);
        if (fname = "" or telno eq "" or comments eq "" or from eq "") {
            stop();
            error = "You have left blank fields, please fill in all fields, thank you";
        } else {
            emailcheck ();
    function emailcheck (){
        if (a != 1){
            stop();
            error = "Email address not valid";
            } else {
            loadVariablesNum("mail.php3", 0, "POST");
            gotoAndStop(2);
    ..........this is the php
    <?php
    $adminaddress = "[email protected]";
    $sitename = "Flash Site Form Mailer";
    mail("$adminaddress","Info Request",
    "A customer at $sitename has made the following enquiry\n
    First Name: $name
    Company Name: $company
    Telephone: $telno
    Email: $from\n
    The visitor commented:
    $comments
    Logged Info :
    Using: $HTTP_USER_AGENT
    Hostname: $ip
    IP address: $REMOTE_ADDR
    Date/Time:  $date","FROM:$adminaddress");
    ?>
    any help much appreciated

    i think you should not use $HTTP_USER_AGENT.
    and use loadvars instead of loadvariablesnum:
    stop();
    a =0;
    function validate () {
        if (from.length>=7) {
            if (from.indexOf("@")>0) {
                if ((from.indexOf("@")+2)<from.lastIndexOf(".")) {
                    if (from.lastIndexOf(".")<(from.length-2)) {
                        a = 1;
                        // email is fine
    function formcheck () {
        validate ();       
        trace(a);
        if (fname = "" or telno eq "" or comments eq "" or from eq "") {
            stop();
            error = "You have left blank fields, please fill in all fields, thank you";
        } else {
            emailcheck ();
    var sendLV:LoadVars=new LoadVars();
    function emailcheck (){
        if (a != 1){
            stop();
            error = "Email address not valid";
            } else {
    sendLV.name=fname;
    sendLV.telno=telno;
    sendLV.company=company;  //assuming company is a variable in your flash
    sendLV.comments=comments;
    sendLV.send("mail.php3", "POST");
            gotoAndStop(2);
    //..........this is the php
    <?php
    $adminaddress = "[email protected]";
    $sitename = "Flash Site Form Mailer";
    $from=?;//you need to define this variable
    $name=$_POST['name'];
    $telno=$_POST['telno'];
    $company=$_POST['company'];
    $comments=$_POST['comments'];
    $body=
    "A customer at $sitename has made the following enquiry\n
    First Name: $name
    Company Name: $company
    Telephone: $telno
    Email: $from\n
    The visitor commented:
    $comments";
    mail($adminaddress,"Info Request",$body);
    ?>

  • Switched email servers; same address, contact form no longer works

    I switched my web host's email from their internal email setup to a google business email of the same address.  The propagation took a little time, but now everything's working right.  Except my contact form on my website.  Now when I try to submit, I get "Server encountered an error" even though its the exact same email address as it was before, just through google's business email  service and not my web host's.  Whats going on and how to I fix this?  Is it an SMTP server issue under the hood?  I notice if I make another email account through my host and then direct the form to send email to that account, it works.  But switching it back to the google business email account I can't get it to work.

    Hi abstractls,
    You may be having the same problem as me. If the Airport Express is NOT connected to the internet, the Macs will still work, but the PC print routines say "you do not have sufficient access to your computer to connect to the selected printer" or just "An unknown error occurred during printing". If you reconnect the internet, the problem goes away.
    I suspect that the PC is not getting an IP address assigned to it by the Airport Express, and cannot cope without it, but the Mac is OK.
    My problem is that I do not want to connect the Airport Express to the net, I just want it to share a printer between Macs and PC. Does anyone know of a fix for that problem? I have told the Airport Express to ignore the lack of an internet connection, but that just switches off the amber light...

  • Adobe Muse - Contact Forms State not changing

    Hey. So I've been playing around with Muse's contact form and changing the aesthetics of the forms (rounded corners, size, text color etc) up to when I came to changing the State of the contact boxes. They seem to show to work perfectly fine in the design mode when you check all rollover states, but when you preview the site in the browser or even in Muse's Preview mode, the changes don't seem to be exactly how you thought they would be. Specifically, I changed the alignment of the text in the box from left to centered, yet the normal state keeps it left (and italicized, which is default). Anyone know the fix to this?

    Like I said, I made sure I changed all the states to the ones that I wanted yet the preview doesn't show the states as I wanted. My text box has left aligned text when i've made sure to center it several times.
    This is what it looks like in the design mode in Muse. (Don't mind the Email/Password, I'm just designing, not for functionality.)
    This is what it looks like once previewed in a browser. Upon clicking and submitting the text aligns in left as well.

Maybe you are looking for