根据文本框中的值生成行数

根据文本框中的值生成行数

本文介绍了根据文本框中的值生成行数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<html>
<head><title>Hi!!!!!!!!!!!!!!!!!!!!</title></head>
<body>
<?php
echo "<form name='frmDataEntry' action=''>";

function showRows()
{
	if(isset($_POST['NoRows']))
	{
		$Num_rows=$_POST['NoRows'];
		for($i=1;$i<=$Num_rows;$i++)
		{
			echo "<input type='text' name='Name'   maxlength=15></input>";
			
			echo "<input type='text' name='Age'   maxlength=2></input>";
			echo "<input type='text' name='Sex'   maxlength=6></input>";
			echo "<br/>";
		}
	}
	else
		{
			echo "Enter a No. > 1";
		}

}
echo "<input type='text' name='NoRows' value='Enter No. of Rows'  maxlength=2></input>";
echo "<input type=button name=submit value=go onclick='showRows();'></input>";


echo "</form>";
?>
</body>
</html>

推荐答案




这篇关于根据文本框中的值生成行数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:36