Hi.
I have a Site with the following JS-code:
function opener1()
{
var url, win;
url=("KontDat.php?details=0815");
win=window.open url,"","width=365,height=246,resizable=no,screenX=0,screenY=0,scrollbars=no, menubar=no, toolbar=no");
//window.location.href = 'KontDat.php?details=on'; //win.kdnr = <?php echo $row_Auftraege_B['Interne_KdNr']; ?>;
win.moveTo(screen.width/2-182,screen.height/2-123);
}
In the new opened Window, I need the variable "details" as a PHP-variable. What I have to do? I´ve already played around with $HTTP_GET_VARS, but I dont know exactly the syntax for this commend.
Can anyone show me an example how to program this, please??
Is my JS-code correct?
Thanxx
thesilencer