如何獲取所有輸入字段,其中type="text"
從一個HTML表單使用php?這是我的代碼:如何獲取所有輸入字段和值
if (isset($_POST['submit'])) {
$dom = new DOMDocument();
print "<pre>";
foreach($dom->getElementsByTagName("input") as $inputs) {
print $inputs->value . "/" . $inputs->name . "<br/>";
}
print "</pre>";
}
我也會從每個輸入字段獲取名稱和值。如果我運行我的代碼,我什麼也得不到。這裏是我的html代碼:
<form action="<?php print $_SERVER['PHP_SELF']; ?>" method="post">
<input name="1" type="text" value="Can you help me?"/>
<input name="2" type="text" value="Thanks"/>
<input name="3" type="text" value=""/>
<!--and a lot more input fields.-->
<input name="submit" type="submit" value=""/>
</form>
我真的很新的PHP和DOM。
所有提交的數據都將在'$ _POST'數組中。 –
未設置$ _POST [「提交」] – Farhan