Je sais pas si se code va marcher un jour

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
 
 
<html>
 
<script type="text/javascript">
 
function clic()
{
	alert('koko');
	<? php 
			$a=new PDO('mysql:host=localhost;dbname=testt', 'root', 'icoz');
			re="insert into g_ip (`IP`,`Site`) values('aa','naaaaaaa')";
			$a->exec($re);
 
	echo ('alert("dans php");');
 
	?>
	alert("fin");
 
 
}
 
</script>
 
 
<body>
<input type="button" value="Yes" id="idOk" onclick="clic()" />
 
</body>
</html>