Php / Ajax ???
Résolu/Fermé
istary
Messages postés
243
Date d'inscription
mardi 4 août 2009
Statut
Membre
Dernière intervention
21 novembre 2011
-
18 mai 2011 à 22:12
floverdevel Messages postés 121 Date d'inscription dimanche 18 février 2001 Statut Membre Dernière intervention 20 mai 2011 - 19 mai 2011 à 05:49
floverdevel Messages postés 121 Date d'inscription dimanche 18 février 2001 Statut Membre Dernière intervention 20 mai 2011 - 19 mai 2011 à 05:49
A voir également:
- Php / Ajax ???
- Easy php - Télécharger - Divers Web & Internet
- \R php ✓ - Forum PHP
- Php if plusieurs conditions ✓ - Forum PHP
- Echo image php ✓ - Forum PHP
- Br php ✓ - Forum PHP
1 réponse
floverdevel
Messages postés
121
Date d'inscription
dimanche 18 février 2001
Statut
Membre
Dernière intervention
20 mai 2011
15
19 mai 2011 à 05:49
19 mai 2011 à 05:49
Oui tu peux faire un timeOut en javascript qui va délencher le call Ajax et qui va mettre à jour le contenu de ta div
Si tu as as accès à la librairie jQuery ça pourrait te faciliter la vie ;)
Exemple :
Si tu as as accès à la librairie jQuery ça pourrait te faciliter la vie ;)
Exemple :
<html> <head> <script type="text/javascript">//<![CDATA[ // the DOM is ready to be read and manipulated $(document).ready(function() { // dans 5 secondes var t=setTimeout("getInfos()",5000); }); function getInfos() { $.get("infos.php", function(data) { alert("Data Loaded: " + data); $("#infos").html(data); }); // dans 5 secondes t=setTimeout("getInfos()",5000); } //]]></script> </head> <body> <div id="infos"></div> </body> </html>