Print an array of list
Posted: Wed Sep 29, 2004 9:19 am
In my form, i have
<input type='text' name='video_id_$i' value=''>
which contain a list of input text from 0 to 12.
How can i print the value in the input text from 0 to 12 ??
<input type='text' name='video_id_$i' value=''>
which contain a list of input text from 0 to 12.
How can i print the value in the input text from 0 to 12 ??
Code: Select all
for($i = 0; $i < 12; $i++) {
echo $video_id_$i;
}