Php internet explorer中的html发布表单出错

Php internet explorer中的html发布表单出错,php,html,forms,internet-explorer-8,Php,Html,Forms,Internet Explorer 8,我有一个html表单,可以发布到php脚本。它在chrome和firefox中运行良好,但在IE中不起作用。我在W3C上运行了一个测试,但找不到任何与表单相关的错误。我的代码是: <form class="formular" id="formular" method="post" action="script/contact.php"> <fieldset> <label> <span>Name :

我有一个html表单,可以发布到php脚本。它在chrome和firefox中运行良好,但在IE中不起作用。我在W3C上运行了一个测试,但找不到任何与表单相关的错误。我的代码是:

<form class="formular" id="formular" method="post" action="script/contact.php"> 
    <fieldset>
        <label>
            <span>Name : </span>
            <input type="text" class="validate['required','length[3,-1]','nodigit'] text-input" name="Name" />
        </label>
        <label>
            <span>Email address : </span>
            <input type="text" class="validate['required','email'] text-input" name="email" />
        </label>
    </fieldset>
    <div class="button">
        <input type="submit" value="Contact" class="submit" />
    </div> 
</form>

姓名:
电邮地址:

提前感谢

表格正确无误。看起来服务器端的处理表单不正确。如何获取结果?

您是否尝试过将../添加到脚本/contact.php链接中,使其显示为../script/contact.php?它到底以什么方式不起作用?从这些古怪的类名中,我猜存在客户端验证程序。你有没有检查过JavaScript错误?我尝试过,在脚本之前添加一个/但这并不能解决问题。除了一些混合空格和制表符错误,javascript文件验证OK当你说catch时,你是说我将它发布到哪里?你能试着从整个模板中提取表单并在单独的html文件中运行它吗?我将它发布到php脚本中-我将尝试提取表单并让你知道。