Tengo la siguiente página :
Código PHP:
<a href="#botonVer" onClick="abrirVentana()" class="boton">Ver directorio</a>
<?
echo '<form name="subirNuevo" action="subir.php" type="multipart/form-data" id="subirNuevo">';
echo ' Imagen existente :';
echo ' <input type="text" name="nomFile" />';
echo ' Seleccione imagen :';
echo ' <input type="file" size="20" name="file" />';
echo ' <input type="submit" value="Modificar" />';
echo '</form>';
?>
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
</head>
<body>
Seleccione la imagen: <br/>
<img src="../archivos/1.jpg" onclick="window.opener.document.subirNuevo.nomFile.value=1.jpg;window.close();" /><br />
<img src="../archivos/2.jpg" onclick="window.opener.document.subirNuevo.nomFile.value=2.jpg;window.close();"><br />
</body>
</html>
Estoy perdido y no se que puedo hacer.
Saludos