Hello
I have pb to keep global variable after an applet java.
example:
my first php page is :
<html>
<body>
<applet archive = .............
<?php include ("var.php");?> "where $var1 is set to 4"
<param name=query value=<?php echo $var1;?>>
.....
</applet>
</body>
</html>
in the applet, i have a button to call a second php page where i want to have $var1
<html>
<body>
<?php echo $var1;?>
</body>
</html>
but $var1 is egual to 0
how can I keep the value of $var1?
Thank you for your help