Ok, let me explain exactly what is happening. On a page, try printing out
this code:
foreach($imgs as $copy) {
echo <option>$copy</option>;
}
$imgs is of course an array. The code though goes through all the $imgs and
displays as so
<option>
image1</option>
<option>
image2</option>
<option>
image3</option>
but I need it like this:
<option>image1</option>
<option>image2</option>
<option>image3</option>
or all in one line would be fine. Any suggestions?
Thanks,
Dominik
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]