Php issue with IE, but works with Chrome & Safari

In Dreamweaver CS6 I created a html & a php file for an online employment application to be sent via email.  The html file views fine in Internet Explorer but when you select the button that runs the php it thinks for a minute then brings back application screen with nothing filled in. Both Chrome & Safari completes the action (submitting the application via email then displays the "successful" message). I have tried using the Adobe BrowserLab on both the HTML & PHP files.  No messages popped up that something is wrong. Any suggestions?
Files in question are posted to www.heartprinthomecare.com/application1.html & www.heartprinthomecare.com/app.php
Thank you in advance for any assistance you can provide
Additional Note: when the php runs in IE it does send a BLANK email.

Since php is a server side scripting language, the problem must be with the client side code. Your form page has many validation errors:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.heartprinthomecare.com%2Fappl ication1.html
Most of this is probably due to your doctype not matching your markup. You should fix that.
But I think the problem is that you are using the formaction attribute in the submit button which is only supported in HTML5.  Rather than using two buttons, put the action in the form tag and give the visitor a radio button to choose location. Then have your script take appropriate action based on the radio button selected.

Similar Messages

  • 7940 IP Phone not working across VPN with 861 but works with ASA5505.

    Hello, I've been trying to get a basic set up working with the 861w where this is being set up at my home with a 7940 IP phone hooked into it to go across an EZVPN tunnel to connect to my office's uc560.
    Now, I have an ASA5505 which works fine, but I'm not sure what differences or tweaks I need to make to get it to work on the 861.
    I've attached my 861 configuration.  When plugged in, the IP Phone tries to configure the VLAN and CM List. It just appears to get stuck and starts over.  If I hook up my 5505 instead, it connects and works just fine.
    Any help would be appreciated!

    Hello!
    I think I spoke too soon. I can get calls to initiate and I can hear the other end and complete the calls, but I notice some pings drop when I'm trying to ping the phone system on the other end, and when I try to complete a call, it doesn't hang up when I hang the receiver up. I also see this in the 861w:
    Feb 26 06:18:48.823: %FW-4-TCP_OoO_SEG: Deleting session as expected TCP segment with seq:4016134121 has not arrived even after 25 seconds - session 192.168.88.16:51758 to 192.168.248.1:2000
    That always occurs after attempting to make a call, which a lot of times goes through, but then hangs and dies.  The missing pings may be the issue, but why when I plug my ASA 5505 in, the calls and everything works perfectly? Do I need quality of service policies or changes to the inspect rules of the 861w?
    I have to think it is the 861w configuration since the 5505 works like a charm from my end.

  • Fonts in Runtime CSS compiled as SWF do not render with setFormatOfRange() but works with setStyle()

    Im having a requirement to load fonts at runtime and display them in a  RichEditableText, The text in the RichEditableText could have multiple  formats so I use the RichEditableText's setFormatOfRange() method to set  the font.
    I use a CSS compiled as a SWF to load the fonts, Fonts render when the font is set via the -setStyle() method as demonstrated in the code below
    Im using Flash Builder 4 with SDK version 4 to compile the app(Using the default Spark Theme).
    Below is the CSS file (fontCSS.css)- You might need to copy fonts from the Widows Font folder for this in a fodler named fonts,
    /* CSS file fontCSS.css*/
    @namespace s "library://ns.adobe.com/flex/spark";
    @namespace mx "library://ns.adobe.com/flex/mx";
    @font-face{
        src: url("fonts/Articulate.TTF");
        fontFamily: "Articulate123";
        embedAsCFF: true;
    @font-face{
        src: url("fonts/AGENCYB.TTF");
        fontFamily: "Agency123";
        embedAsCFF: true;
    Right Click on the CSS file, in Flash Builder 4 and select "Compile CSS to SWF".
    Run the MXML application below and you should see the issue Im trying to describe.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                   creationComplete="application1_creationCompleteHandler(event)">
        <fx:Script>
            <![CDATA[
                import flash.utils.describeType;
                import flashx.textLayout.formats.TextLayoutFormat;
                import mx.collections.ArrayCollection;
                import mx.events.CalendarLayoutChangeEvent;
                import mx.events.FlexEvent;
                import mx.events.StyleEvent;
                import spark.events.IndexChangeEvent;
                private var swfLoader:Loader
                protected function application1_creationCompleteHandler(event:FlexEvent):void
                    var cssEventDispatcher:IEventDispatcher=styleManager.loadStyleDeclarations("fontCSS.swf")
                    cssEventDispatcher.addEventListener(StyleEvent.COMPLETE, onComplete);
                private function onComplete(event:Object):void
                    fontList.dataProvider=new ArrayCollection(Font.enumerateFonts())
                protected function fontList_changeHandler(event:IndexChangeEvent):void
                    var tlformat:TextLayoutFormat=new TextLayoutFormat()
                    tlformat.fontFamily=fontList.selectedItem.fontName
                    textEditor.setFormatOfRange(tlformat,0,5)
            ]]>
        </fx:Script>
        <s:layout>
            <s:VerticalLayout/>
        </s:layout>
        <s:Label text="Please select a font from the list below"/>
        <s:List id="fontList" change="fontList_changeHandler(event)">
        </s:List>
        <s:RichEditableText id="textEditor2"
                            fontSize="30"
                            fontFamily="{fontList.selectedItem.fontName}"    >
            <s:p>Hello -  fontFamily set via css binding</s:p>
        </s:RichEditableText>
        <s:RichEditableText id="textEditor"
                            fontSize="30"
                            >
            <s:p>Hello - fontFamily set via setFormatOfRange()</s:p>
        </s:RichEditableText>
    </s:Application>
    tried to use an external SWF with the fonts compiled in them Via AS3, that too dosent seem to work, The setStyle() also refuse the work with the below SWF
    here is the AS3 project code for your reference
    FontEmbedder.as
    package
        import flash.display.Sprite;
        import flash.system.Security;
        import flash.text.Font;
        public class FontEmbedder extends Sprite
            public function FontEmbedder()
                Security.allowDomain("*")
            [Embed(source="/fonts/Articulate.TTF", fontName="Articulate123", embedAsCFF="true")] 
            public var articulateFont:Class;
            [Embed(source="/fonts/AGENCYB.TTF", fontName="Agency123", embedAsCFF="true")] 
            public var agencyFont:Class;
    We ve been wrecking our heads off to figure out a solution for this. Ultimately decided to post a question here.
    Your feedback will be highly appreciated.
    Below are  snapshots of how the 2 fonts are rendered
    Regards.

    Hi Alex,
    I did read through your blog the other day, This must have been thepost you were referring to,
    http://blogs.adobe.com/aharui/2010/03/flex_and_embedded_fonts.html
    The post is explanatory, but how would we implement this successfully wth code?
    A working AS3 code example of your explanation would be more than helpful.
    Regards

  • [Struts]File upload doesnt work with "Create" but works with "CreateInsert"

    Hello,
    thank you for reading this!
    Im facing serious issue with web application built with JSP, Struts & ADF BC in jdeveloper 10.1.3.1 and jdeveloper 10.1.3.2 (same code works perfectly in older jdev versions)
    File upload to DB only works if CreateInsert is selected in PageDefinition. (Have to change from default "Create" to "CreateInsert")
    If I set "Create" i get this problems:
    - if VO is empty the row cannot be created (no error is returned, i click ОК and row is not commited, its just discarded)
    - if VO is not empty instead to create new row current row is updated.
    This only happens with "multipart/form-data" forms. With plain form row is created without the problem.
    If I change to "CreateInsert" then I can add new rows with "multipart/form-data" but i would prefer "Create" because it avoid the blank row issue...
    Old 10.1.3 works with "Create" and "multipart/form-data".
    Im aware of this problem since the 10.1.3.1 release but I havent posted on the forum because I hoped Oracle is aware of this problem but since the problem remains I decided to react. I do not have the metalink account so only way to address the issue is in this forum.
    Please Help.
    Sanja

    I had some problem with 'Create' earlier with 10.1.2. Then I kept recreateing the pages and then it worked finally. How are you creating the page for 'create' event. Is it like, first displaying the rows from the table with create button, or are you right away creating the page from menu option.

  • 67yuhjnm keys don't capitalize with capslock but works with shift

    So I just noticed a few hours ago that my 67yuhjnm keys don't capitalize with capslock but will capitize when I hold down the shift key. My keyboard was working just fine and I haven't downloaded anything recently so I don't know what could have caused this problem. I did spill a glassful of water on my keyboard a few months ago but there have been no signs of damage. A few drops of water did fall on my keyboard a few days ago that I guess may could have seeped in before I could wipe it dry but it wasn't a lot. Just a few drops and only on a few keys.  Not sure if this is related but I had a Lenovo Updates window pop up soon after I noticed my keys not working and I had to actually click to download an update. I've never had to manually download updates before so I have no idea what's going on. So far there were 4 updates, 3 on Wireless LAN Driver and the other on Lenovo updates software. I've restarted my computer several times and another Wireless LAN Driver update popped up just now. I also just checked my Windows updates and there were failed Windows 10 updates in the last few days. I didn't get any notification for this huge update so not sure what happened there either. Also, I've noticed that my capslock light stays on even when capslock isn't enabled. When I do press capslock the light gets brighter, and then when it turn capslock off the light gets the slightest bit dimmer. I noticed this a few days ago, but it could have been like this for much longer and I just did not notice until now. I'm not a very observant person lol. But my issue with the 67yuhjnm definitely just happened today or in the last few days.  What could have caused capslock to suddenly not work on two diagonal rows of keys? It's just those keys that don't capitalize with capslock. Shift will capitalize them. Lowercase works too. I've tried restarting my computer but that didn't fix it. I have a Flex 2 14".  Please help! Thanks.

    So the problem fixed itself. No idea what happened with my laptop but it seems to be fine now.

  • Airplay not working with ipad3 but works with ipod touch 3rd gen works

    Just recieved my apple tv 3rd gen (refirbushed) got it connected to my wifi and check out a few things and was working just fine. Then I tried to use the airplay function on my ipad 3 and it started to connect then the circle spins and error message appears. After which it messes up the wifi and nothing can connect to it, not ATV, not ipad, not touch, or other 2 laptops until it is reset. Did this a couple of times same result. Finally tried different tv farther away from router, same result. Lastly I tried touch, airplay worked with multiple apps. Retried the ipad, everything broke same as before. Please Help.
    Last iOS on all.
    D-Link DIR-635 - nWireless capable
    MAC Address filtering on.
    Home Sharing on.

    Turn off the address filtering, and see what happens...
    Using AirPlay
    http://support.apple.com/kb/HT4437
    Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS4215

  • Isight not working with ichat but works with Google talk and photo booth

    In message beta it say that I have no cam. But in device manger it lists isught under usb.

    sorry I lost ichat because it was replaced by with beta of the new message app (dont renember being asked if that was ok )
    here is a few things you may want to read
    http://support.apple.com/kb/HT2090
    http://forums.macrumors.com/showthread.php?t=254318
    http://www.mac-forums.com/forums/other-hardware-peripherals/29466-isight-not-wor king-ichat.html

  • Camera NOt Working with Skype (but works with Face...

    Hi, I have a client coaching session scheduled through skype and my camera is not working.  Please, does anyone have suggestions? I've downloaded the latest version of skype from the skype website. My computer software is updated.  The camera is working for Face Time. I've gone into "preferences" under "Skype" and clicked on audio/video.  The video has only one option: "Built In iSight".  I'd appreciate any help.  Thank you!
    Solved!
    Go to Solution.

    I had read this solution on other forums, but it did not solve my problem. (I rebooted before opening skype, had nothing else running, and still got the "video is turned off" error message.) I am putting my solution here for those unlucky ones whose problem is not resolved by the easy solution above.
    I had this exact problem, suddenly, two days ago. I see from Skype forums and Mac forums that this is a very common problem. I spent 2 hours on Skype chat support (two different calls) with no luck. The technicians had not heard of the problem (!) and just kept saying try doing a clean install (uninstall and reinstall) which I did and didn't work. Finally, I copied an old version of Skype from a different Mac and copied it to my new computer (over-writing the latest version of Skype) and POOF! Problem solved. Clearly it is a glitch in the newest version of skype. If you are lucky enough to have an old version of skype on another computer, or a friend who has an older version: (1) copy your skype.app file from your other mac to a thumb drive, or email it to yourself--somehow get it to your new computer--and copy it into your applications folder. It will say you already have this file--overwrite? Say yes. Problem solved. (2) do NOT select "update automatically" as a skype option. If you do, you will always be among the very first to be derailed by a new bug. Let other suckers work through those problems. (3) when you DO update skype, before you download the new version, change the name of the previous version to something like "skypeJanuary2011" or "skypeOldVersion" so that it does not get over-written by the new version. Then if the new version is buggier than the old one, you can always go back. 
    Skype needs to offer older versions on their website for problems like this, but I don't think they do (?).

  • Airport express: no sound with iphone but works with ipad and mac

    Hello,
    I have a problem with my airport express. With my iphone (5, ios8) i can connect to it but there is no sound when i play something. However, when i connect to it with my mac (mini, 10.9.5) or ipad (ios8), everything is fine. I tried restarting of all the devices, including the router, but it does not help. There is no problem with the iphone; streaming to apple tv works fine. Does anyone know how to fix this, or what could be the problem?
    Bastii

    Bastii
    Did you resolve this I have the same problem with all my mobile devices iphone 5, ipad mini and ipod touch 5th Gen all wuiing latest software.  It also works fine with my PC and iTunes.
    I have managed to get sound on the odd occasion for a few minutes but drops out, it also stops if I swap back to the mobile device and back to the airport express (this never works).

  • Some msn content does not work with "4" but worked with 3 series

    Had to reload mozilla 3. Mozilla 4 did not allow any customizing of MSN home page. Moz 4 does not display e-mails link or Wall Street applications all of whick work in "3"
    Windows "7" system

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    Note that if you log in to msn.com through live.com or another Microsoft site, you might need to clear cookies for that site as well.

  • Mouse will not scroll with FireFox but works with Explorer

    The only time my BlueTooth mouse has problems scrolling is with FireFox.

    You forgot the /images path in the embed (you swapped name and src)
    src="mainflash1.swf" -&gt; src="/images/mainflash1.swf"
    name="/images/mainflash1" -> name="mainflash1"
    <pre><code>&lt;embed
    type="application/x-shockwave-flash"
    pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
    name="mainflash1"
    width="518" height="274"
    src="/images/mainflash1.swf"
    bgcolor="#FFFFFF"
    quality="high"
    allowscriptaccess="samedomain"
    &gt; &lt;/embed&gt;</code></pre>

  • I use babylon as my dictionary and it dosen't work properly with firefox, but works with other browsers!

    Babylon as a dictionary has a feature to simplify finding of word's meanings. This feature is using of middle mouse button to click on any word and in any application such as internet browsers to find its meanings, but this dosen't work in firefox 3.6. When I press middle mouse button on a word, it dose not select it correctly or may be select another word. Any solution?

    I had this problem. I fixed it by right clicking on the website page and found I had inadvertently ticked "block images from this website". Uncheck this and it's fine!

  • Facebook & eBay Won't Load With Ethernet, But Works With 3G... :/

    Hi Apple fans!
    I'm writing in regards to a weird internet problem that I have. Right now I am using an ethernet cable to go online on my Macbook Pro, and every website works. Well, every website but Facebook and eBay.
    I'm sure there are just more than those two that don't work, but in any case these are the two that I frequently use that and that need to be working.
    Strangely, when I tether my Macbook Pro to my iPhone's 3G, Facebook and eBay start working. Does anyone know why? Are there any solutions that I can try to get access to these websites again?

    Try to disable IPv6 in Firefox.
    *http://kb.mozillazine.org/Error_loading_websites#IPv6
    You can also try to reset (power off/on) the router.

  • The search box in upper right corner is non-functional with Firefox, but works with IE on same website, please explain.

    This is a recent problem. I have not made any changes concerning my web browser. Perhaps I need to reinstall Firefox.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    * http://kb.mozillazine.org/Unable_to_search_or_add_new_engines

  • Huffington Post's Bigshots feature doesn't work with Firefox but works with IE what's the problem?

    cannot advance past the second frame

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    See also:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * You can see all exceptions in Tools > Options > Content: Load Images > Exceptions
    * You can check the Tools > Page Info > Media tab for blocked images (scroll through all the images)
    There are also extensions (Tools > Add-ons > Extensions) that can block images.

Maybe you are looking for

  • How to remove bursting control file?

    Hi, I attached a bursting control file to a data definition to test the functionality. Now I want to get rid of it, unfortunately I don't see a delete button or anything similar in XML Publisher Administrator. How can I delete the file? Thanks, Arthu

  • Creation of Spool for a Report Output in background.

    Hi Gurus, I am working on a Report and my requirement is that a Spool should be Generated for the Report Output in background. Instead of generating the spool manually, I need it to be generated in background. Please let me know ASAP. Regards, Amit.

  • Photoshop CS 5 will no longer open and display a file on the screen

    I am running CS5 on a pc with windows 7.  Suddenly, CS5 stopped displaying any pictures (both .jpg and .raw) on the screen after I import them from my hard drive.  I uninstalled the program and reinstalled it but the problem perisists. Can anybody te

  • Two XSLT maps in one senario.

    Please help me with the senario where I want ot use two XSLT maps in one XI senario. The out put of the first map will be input for the second XSLT map. - Rajan

  • Why I cannot input Recon. acount when I create vendor master in XK01

    The field of Recon. acount is greyed out when I create vendor master in XK01. Can any expert help? BR, Eda