è un problema JS, NON PHP (!), comunque...
link:
Codice PHP:
<a href=\"javascript:PopupCentrata('?id=1')\">Popup</a>
(puoi anche mettere altri parametri, p.es. '?id=1&x=0&y=1')
codice JS nell'HEAD:
Codice PHP:
<script type="text/javascript">
<!--
function PopupCentrata(parametri) {
var w = 400;
var h = 250;
var l = Math.floor((screen.width-w)/2);
var t = Math.floor((screen.height-h)/2);
window.open("mioFile.php"+parametri,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
//-->
</script>