i make this form
form.htm
CODE
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 6</title>
</head>
<body>
<form method="POST" action="send.php">
Format="TEXT/CSV" S-Label-Fields="TRUE" -->
<p><input type="text" name="T1" size="20"></p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 6</title>
</head>
<body>
<form method="POST" action="send.php">
Format="TEXT/CSV" S-Label-Fields="TRUE" -->
<p><input type="text" name="T1" size="20"></p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
In form.htm file i have one input box with name T1 i want change
in send.php i use this code to receive T1 value :
CODE
$catid = $_Post['T1'];
But in send.php i dont know that is T1 name
i want receive all value sending form "form.htm" in "send.php"
for example when i want make dynamic form with "n" inputbox i dont know name of inputbox in send.php
sorry my english is not very good
if you know tutorial or sample soruce about this topic please help me
thanks

