<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ssc prepartion</title>
</head>
<body><form action="ssc.php" method="post">
1
<input name="name" type="text">
<input name="submit" type="submit"value="result"></form>
</body>
</html>
// creating php file to get the result.
<?php
$name=$_REQUEST["name"];
$text="user".$name;
echo'<form action="ssc1.php" method="post">';
for($x =0; $x <= $name; $x++) {
echo '<label for="'. $name .'">'.$x.'</label>';
echo '<input type="text" name="'.$text.'" ><br><br>';
}
echo'<input type="submit" value="result">';
echo'</form>';
?>
所以在这里我试图通过创建一个小的PHP函数来创建输入字段。它正在工作并创建输入字段,但问题出在创建这些输入字段之后。
我无法弄清楚如何为这些输入字段指定名称或ID,以及如何从所有创建的字段中获取值。
我的问题是如何在创建这些输入字段后从这些输入字段中接收值?
答案 0 :(得分:0)
使用php,在ssc1.php页面上,您可以使用$ _POST [&#39;输入名称&#39;]
获取输入值