09-03-2008, 08:56 PM
oui, en general, c est bien ordonné, je fais attention.
apres avoir bidouillé, j'en suis arrivé à mettre la fonction php2js.php dans un repertoire MOD et la variable php a transformer dans un repertoire IHM
Mais le script javascript doit rester dans le body. donc ca va pas.
pour faire simple, il me faudrait:
fichier IHM/IHM_php2js.php qui
1/ declare la variable php a changer
2/ appelle la fonction php2js.php
3/ ecrit le script js pour changer la variable
4/ affiche le Alert(mavariable)
et fichier MOD/MOD_php2js.php qui
1/ recupere la variable php
2/ traite la variable php
1/ renvoit la variable php dans le fichier ihm
en rapide ca donne:
et
mais ca.. ca marche pas...
merci
eric
apres avoir bidouillé, j'en suis arrivé à mettre la fonction php2js.php dans un repertoire MOD et la variable php a transformer dans un repertoire IHM
Mais le script javascript doit rester dans le body. donc ca va pas.
pour faire simple, il me faudrait:
fichier IHM/IHM_php2js.php qui
1/ declare la variable php a changer
2/ appelle la fonction php2js.php
3/ ecrit le script js pour changer la variable
4/ affiche le Alert(mavariable)
et fichier MOD/MOD_php2js.php qui
1/ recupere la variable php
2/ traite la variable php
1/ renvoit la variable php dans le fichier ihm
en rapide ca donne:
Code :
<?php
include 'mod/mod_php2js.php';
$variable_php='mavasdsdddsriable';
<script type="text/javascript">var variable_js =<?php echo php2js($variable_php) ?>;alert(variable_js);</script>
?>
et
Code :
<?php
function php2js ($var) {
switch (true) {
code.....
return php2js(strval($var));
}
}
?>
mais ca.. ca marche pas...
merci
eric