0

私はHTML要素を動的に作成しています:テキストボックス送信ボタンは、送信時にphpコードに移動し、データをデータベースに配置する必要があります。

しかし、誰かが私が間違っている場所を知ることができれば、PHPの部分は機能していません

<html>
<head>
    <title>My first PHP page</title>
<script>
    function addsubdomain()
    {
        document.getElementById('subdomain').innerHTML  +="<form id='form1' method='post' action='new.php'> \n\
            <input type='text' id='textid' name='subdomain' value='' /><br /> \n\
            <input type='button' id='button2' name='submit2' value='submit'/></form>";
    }
</script>
</head>
<body>       
    <input type="button" id="button1 "name="submit1"  value="Add SubDomain" onclick="addsubdomain();"/>
    <div id="subdomain"></div>
     <?php
        if(isset($_POST['submit2']))
        {
            echo "hii";// Not working not coming here
            echo $_POST['subdomain'];
        // Insert Query
        }                      
     ?>
</body>
</html>
4

1 に答える 1

3

現在、JavaScript では動的ボタン タイプがボタンであるため、フォームを送信していません。したがって、javascript で type='button' を type='submit' に変更します。つまり、このように変更します

document.getElementById('subdomain').innerHTML  +="<form id='form1' method='post' action='new.php'> <input type='text' id='textid' name='subdomain' value='' /><br /> <input type='submit' id='button2' name='submit2' value='submit'/></form>";
于 2013-05-17T09:30:57.970 に答える