|
|
Moi je suis capable de dire bonjour, alors pourquoi pas toi ?...
Sinon voici ce que j'ai pu faire:
premièrement, ton code est mal fait...
voici le bon:
<html>
<head>
<script type="text/javascript">
window.open('test.php?toto=$variable','test', config='height=, width=, tollbar=yes, scrollbars=yes, resizable=yes, status=yes, location=yes, directories=yes')
</script>
</head>
<body>
</body>
</html>
et voici pour ta page test.php
<?php
if ($_GET['toto']){
$variable = "Salut";
echo $variable;
}
?>
voilà...
|