Hello,
I want ask you, how can i get the value of the select in the same page to use it to loop by it ?
for example:
<select name="abc">
<option value="1" >1</option>
<option value="2" >2</option>
<option value="3" >3</option>
</select>
and to use the $_POST['abc'] in a loop
like this:
for($i=0;$<$_POST['abc'];$i++){
echo $i;
}
If you have another way to get the value except the AJAX because i tried it and not succedded
Thanks