When I am trying to POST an Array Having some ploblems,
Here is my code
Thanks in advance
for(;$i>0;$i=$i-1){
$j=$new+1;
echo '</br>'.$j.'. <form action="3.php" method="post"/><input type="textarea" name="o[.$new]"/><input type="text" name="o2[.$new]"/><input type="text" name="o3[.$new]"/><input type="submit" value="Send"/></form></br>';
$new=$new+1;
}
What I am trying to achive is to create dynamic number of textarea, and wait user to fill up these area, then post these datas to the "3.php" page.
<form action="3.php" method="post"/>
<input type="textarea" name="o[.$new]"/>
<input type="text" name="o2[.$new]"/>
<input type="text" name="o3[.$new]"/>
<input type="submit" value="Send"/>
</form>
"