私は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>