I have a index.php
file inside which I have my select
and I want to fill it with the files of a specific folder, but I get two points ..
as shown in the image:
Code.
<select name="Combobox1" size="1" id="cmbimgprin" style="position:absolute;left:441px;top:377px;width:468px;height:28px;z-index:2;">
<option>Seleccione una Opción...</option>
<?
$directorio = "D:\letritastv\imagenes";
$sizekb = 0.0 ;
$sizemb = 0.0 ;
$dir=opendir($directorio);
$file=array();
while (($file = readdir($dir))!== false)
{
if ($file != '.' && $file != '..')
{
?>
<option><? $file?></option>
<?}}?>
</select>
What is missing or redundant in this code?