rastkocvetkovic
Programmer
first.php
<form>
<loop>
movie[]
</loop>
submit > second.php
second.php
for ($i = 0; $i < count($movie); $i++) {
echo $_POST['movie[$i]']; //this doesn't work
}
What could replace the $_POST['movie[$i]'] and is not $movie[$i]? Thanks for answer.
<form>
<loop>
movie[]
</loop>
submit > second.php
second.php
for ($i = 0; $i < count($movie); $i++) {
echo $_POST['movie[$i]']; //this doesn't work
}
What could replace the $_POST['movie[$i]'] and is not $movie[$i]? Thanks for answer.