I have a form with multiple textboxes which are created dynamically, now all these textboxes are of same name lets say txt, now is there any way that when form proc
txt
Create your text box with names txt[]
And in PHP read them as
$alTxt= $_POST['txt']; $N = count($alTxt); for($i=0; $i < $N; $i++) { echo($alTxt[$i]); }