Thread: Html/php
-
18-09-2004, 20:41 #1
Html/php
Hoe kan ik een variabele sturen naar een bepaalde frame?
Ik heb een pagina waar een link instaat die een nieuw venster opent dat bestaat uit 2 frames ("bottom" en "top").
Dit is de link die ik nu gebruik:
Code:<a href=\"javascript:window.open('save.php?file=files/$image','bottom','width=200,height=80,top='+((screen.height/2)-(40))+',left='+((screen.width/2)-(100))+',toolbar=no,scrollbars=no,resizable=no,menubar=no,status=no,directories=no,location=no');%20void(0);\">no votes
-
-
18-09-2004, 21:08 #2
voor zover ik het door heb:
PHP Code:<a href=\"javascript:window.open('save.php?file=files/$image&var1=$var2','bottom','width=200,height=80,top='+((screen.height/2)-(40))+',left='+((screen.width/2)-(100))+',toolbar=no,scrollbars=no,resizable=no,menubar=no,status=no,directories=no,location=no');%20void(0);\">
en dan in uw save.php ergens:
$var_save= $_GET['var1'];
mouseover.be~Arty, Farty, Techy, Dailyno votes
