bamoZ 0 Denunciar post Postado Junho 7, 2008 Ae galera! Tenho o seguinte codigo: <script> function adicionaSlide{ alert("ola"); } <? echo "adicionaSlide();" ?> </script> Nao to conseguindo chamar a função. Sei que nao posso abrir e fechar script dentro do echo denovo... Alguém sabe um jeito? Agradeço desde já! Abraços Compartilhar este post Link para o post Compartilhar em outros sites
Alaerte Gabriel 662 Denunciar post Postado Junho 7, 2008 <script language="JavaScript"> function adicionaSlide(){ alert("ola"); } <?php echo "adicionaSlide();" ?> </script> Apenas com PHP: <?php function alerta(){ echo "<script>alert('Olá');</script>"; } alerta(); ?> Compartilhar este post Link para o post Compartilhar em outros sites
bamoZ 0 Denunciar post Postado Junho 8, 2008 Value alaerte! Era isso mesmo! Abraços Compartilhar este post Link para o post Compartilhar em outros sites