sujet
je veux actualiser une page web chaque 4 ms . avec AJAX
resultat:
rien.
voici les codes mes amies :
page:affichage_cam.php
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<html>
<head>
<title>CtrlCAM</title>
<script type='text/JavaScript'>
var xhr = null;
function getXhr(){
if(window.XMLHttpRequest) // Firefox et autres
xhr = new XMLHttpRequest();
else if(window.ActiveXObject){ // Internet Explorer
try {
xhr = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
}
else { // XMLHttpRequest non supporté par le navigateur
alert("Votre navigateur ne supporte pas les objetsXMLHTTPRequest...");
xhr = false;
}
}
/**
* Méthode qui sera appelée sur le click du bouton
*/
function go(){
getXhr()
// On défini ce qu'on va faire quand on aura la réponse
xhr.onreadystatechange = function(){
// On ne fait quelque chose que si on a tout reçu et que le serveur est ok
if(xhr.readyState == 4 && xhr.status == 200){
xhr.responsetxt;
}
}
xhr.open("GET","recharger.php",true);
xhr.send(null);
}
function ImageMax(chemin)
  {
   html = "<html> <head> <title>ImageMax</title> </head> <body onBlur='top.close()'><IMG src='"+chemin+"' BORDER=0 NAME=ImageMax onLoad='window.resizeTo(document.ImageMax.width+10,document.ImageMax.height+30)'></body></html>";
   popupImage =window.open('','_blank','toolbar=0, location=0, directories=0, menuBar=0, scrollbars=0, resizable=1');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close();
   }; 
</script> 
</head>
<body bgcolor="#FFCC66" background="morakeb2.jpg">
<div align="center" >
<TABLE WIDTH=560 BORDER=0 CELLPADDING=0 CELLSPACING=0>
	<TR>
		<TD>
			<A HREF="http://localhost/formation/Ajout_cam.html">
				<IMG SRC="images/afficher3.jpg" WIDTH=144 HEIGHT=50 BORDER=0 ALT=""></A></TD>
		<TD>
			<A HREF="http://localhost/formation/suppression_cam.php">
				<IMG SRC="images/supprimer3.jpg" WIDTH=137 HEIGHT=50 BORDER=0 ALT=""></A></TD>
		<TD>
			<A HREF="http://localhost/formation/modification_cam.php">
				<IMG SRC="images/modifier3.jpg" WIDTH=127 HEIGHT=50 BORDER=0 ALT=""></A></TD>
		<TD>
			<IMG SRC="images/4_04.jpg" WIDTH=152 HEIGHT=50 ALT=""></TD>
	</TR>
</TABLE>
<p>&nbsp;</p>
<p>&nbsp;</p>
<form name="image" action="">
<?
$host="localhost";
$nom="root";
$pass="isl@m_yantasser";
$link=mysql_connect($host,$nom,$pass) or die ("Connexion impossible");
mysql_select_db("CTRLCAM",$link);
$result=mysql_db_query("CTRLCAM","select * from image WHERE IdMetadomaine='".$tab[0]."'");
echo "<div align=center>";
echo "<table border=0>";
echo"<tr>";
$j=3;$s=0;
while($row=mysql_fetch_array($result))
{
echo "<td><table border=1 bordercolor=black>";
echo "<div id=123><a href=# onclick=\"ImageMax('".$row[Chemin]."')\";></div>";
echo "<tr><td>"."<b>"."<font size=4 color=#FFFF66>"."<img height=213 width=213 src ='".$row[Chemin]."'>"."</font>"."</b>"."<br>"."</td></tr>";
echo "<tr><td>".$row[commentaire]."</td></tr>";
echo "</table></td>";
$s++;
if ($j==$s){
echo"</tr><tr>";
$j=$j+3;
}
}
echo "</tr>";
echo "</table>";
?>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table border=0>
<tr><td bgcolor="#808080"><span style="background-color: #808080">&nbsp;nous contacter : 
	</span><a href="mailto:metacompes@menara.ma">
	<span style="background-color: #808080">metacompes@menara.ma</span></a><span style="background-color: #808080">
	</span></td>
	<td bgcolor="#808080"><span style="background-color: #808080">&nbsp;site web: 
	</span><a href="http://www.metacomputer.net">
	<span style="background-color: #808080">www.metacomputer.net</span></a><span style="background-color: #808080">
	</span></td>
</tr>
</table>
</form>
</div>
</body>
</html>
page recharger.php:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
<?
echo "<script language=javascript>";
echo "setTimeout(location.reload(),4)";
echo "</script>";
?>
j'attend vos réponses et merci bien