获取连接每次发布时都会重置错误"从b"中选择1在输入字段中

时间:2016-06-17 07:04:38

标签: php html post

我每次正在尝试发布"从b"中选择1时,我的连接被重置错误在textarea字段中以简单的html格式。 HTML表单是一个简单的表单,只有两个html标签(textarea和一个提交按钮)。

Before and After submitting the html form

这在我的开发机器上工作正常。但是没有在linux上运行的登台服务器上工作。

以下是HTML代码:

<html xmlns="http://www.w3.org/1999/xhtml">
<body>
    <form name="welcome" id="addvdoform" action="http://192.168.4.11/addproduct.php" method="post">
        <table class="smalltext1" width="100%" border="0" cellpadding="1" cellspacing="1">
            <tbody>
                <tr>
                    <td align="right">Title : </td>
                    <td align="left">
                        <textarea name="data[Videoclips][title]" class="txtboxNone" onkeyup="charcountDynamic(this, 254);" id="VideoclipsTitle" required="required">select 1 from b</textarea>
                    </td>
                </tr>
                <td align="right">&nbsp;</td>
                <td align="left">
                    <input value="Submit" type="submit" />

                </td>
                </tr>
            </tbody>
        </table>
    </form>
</body></html>

我的addproduct.php看起来很简单:

<?php
    if( isset($_POST) ) {
        print_r($_POST);
    }
?>

0 个答案:

没有答案