questo link che mi hai passato mi sarà utile per fare i controlli.
io ho trovato la stessa funzione che si usava nel pafiledb che prevede le due pagine
esempio:
PAGINA1.php
Codice PHP:
<script>
function popimg(){
window.open('PAGINA2.php','_blank','width=250, height=150, scrollbars=yes, resizable=yes')
}
function urlimg(valoreparametro) {
document.getElementById("immag").value = valoreparametro;
}
</script>
<body>
<input type="text" size="50" name="immag" id="immag"><a href="javascript:popimg()">APRI L'UPLOADER</a>
</body>
PAGINA2.php
Codice PHP:
<a href="PARAMETRO CHE PORTO NELL'INPUT DELLA PAGINA1.PHP" onClick="opener.urlimg('parametro');return false;">PULSANTE CHE MOSTRO A VIDEO CHE POSTA IL PARAMENTRO NELLA PAGINA1.PHP</a>
Spero possa essere utile a qualcuno, e un codice simile l'ho trovato su un sito.