[JAVAScript] Porblème d'insertion

Résolu/Fermé
Barichon Messages postés 19 Date d'inscription mardi 29 septembre 2009 Statut Membre Dernière intervention 24 novembre 2009 - 12 oct. 2009 à 12:33
Barichon Messages postés 19 Date d'inscription mardi 29 septembre 2009 Statut Membre Dernière intervention 24 novembre 2009 - 15 oct. 2009 à 14:44
Bonjour,

J'aimerais inserer ce code dans ma paghe php:

function Scroller() { 
window.scrollBy(0,100); 
} 
setTimeout("Scroller()", 500);


J'ai mis integrer donc mon code dans ma page php de cette façon:

<?php

echo "<SCRIPT LANGUAGE=\"JavaScript\"> ";     
function Scroller() { 
window.scrollBy(0,100); 
} 
setTimeout("Scroller()", 500);
echo"</SCRIPT>";


page web.....

?> 


Mais quand je rafraichit ma page pour voir ce que ça me donne, j'ai une page toute blanche :(
Quelqu'un peut'il me filé la main car je ne toruve pas d'ou cela peut venir...

Merci
A voir également:

4 réponses

Groarh Messages postés 682 Date d'inscription vendredi 1 août 2008 Statut Membre Dernière intervention 28 juin 2015 185
12 oct. 2009 à 13:52
Salut,
ta fonction doit faire partie de la chaîne que tu mets dans echo. Ça m’étonne d’ailleurs que tu n’aies pas de message d’erreur…
N’oublie pas d’échapper les guillemets autour de Scroller().

;)
0
Barichon Messages postés 19 Date d'inscription mardi 29 septembre 2009 Statut Membre Dernière intervention 24 novembre 2009
12 oct. 2009 à 14:16
Voila,
J'ai mis cela:

echo "<SCRIPT LANGUAGE=\"JavaScript\"> ";
function Scroller() {
window.scrollBy(0,100);
}
setTimeout("Scroller()", 500);
echo"</SCRIPT>";


mais là pour le coup j'ai une erreur de la page (page graph_view.php du logiciel de monitoring cacti)


Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 121

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 122

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 123

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 124

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 126

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 130
0
Groarh Messages postés 682 Date d'inscription vendredi 1 août 2008 Statut Membre Dernière intervention 28 juin 2015 185
14 oct. 2009 à 13:56
echo "<script type=\"text/javascript\">
function Scroller() {
window.scrollBy(0,100);
}
setTimeout(Scroller, 500);
</script>"; 
0
Barichon Messages postés 19 Date d'inscription mardi 29 septembre 2009 Statut Membre Dernière intervention 24 novembre 2009
15 oct. 2009 à 14:44
c'est bon merci j'ai trouvé ;)
0