Bonjour,

je veux creer un popup pour confirmer l'execution mais j'ai un souci dans ma boutton submit il y a execution d'autre fonction js qui permet de recuperer la valeur de mes radio boutton alors comment je vais faire pour que ma boutton submit executer les deux fonctions js(confirmation et recuperer valeur radio boutton) voila mon code:

code qui permet recuperere la valeur de radio boutton
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
<SCRIPT language="javascript"> 
function testerRadio(r1) { 
for (var i=0; i<r1.length;i++) { 
if (projet1.r1[i].checked) { 
$a=projet1.r1[i].value ;
 
} 
} 
} 
</SCRIPT>
<style type="text/css">
.session {	
	color:#000;
	font:"Arial Black", Gadget, sans-serif;}
</style>
 
<form action="f4.php" method="post">
  <table width="220" border="0">
    <tr>
    <td width="119" height="21"><?php
  @session_start();
?>
      Bonjour,<span class="session"><?php echo'',$_SESSION['login_user'],''; ?></span></td>
    <td width="10"><strong>|</strong></td>
    <td width="77"><h5><a href="deconnexion.php">Deconnexion</a></h5></td>
 
  </tr>
  </table>
  <table width="616" border="0" align="center">
    <tr>
    <td colspan="3" bgcolor="#CCCCCC"><div align="center"><strong>Liste des Fichiers de Configuration</strong></div></td>
  </tr><?php
 
include("connection.php");
//echo('b1');
$id=$_GET['id_projet'];
//echo $id;
 
$q=mysql_query("select * from fichier_config where id_projet=$id ") OR die('Erreur de la requête MySQL'); ?>
 
<tr>
  <td width="216"><strong>Nom fichier de configuration</strong></td>
<td width="116"><strong>Case a cocher</strong></td>
<td width="270"><strong>Description</strong></td></tr> <?php while(
$t=mysql_fetch_array($q)){$i=1; ?> <tr>
    <td bgcolor="#CCCCCC">
 
<?php echo($t['nom_fichier']);?></td>
    <td bgcolor="#CCCCCC"><input type="radio" name="r1" id="r1" value="<?php echo ($t['valeur']); ?>" /></td>
    <td bgcolor="#CCCCCC"><?php echo($t['description']);?></td><input type="hidden" name="confirm" value="oui"/>
 <?php $i++; }?> </tr><tr><td height="26" colspan="2" bgcolor="#FFFFFF"><input name="valider"  type="submit" value="Executer" onclick="testerRadio(r1);" />     </td>
   <td height="26" bgcolor="#FFFFFF"><a href="user.php">&lt;---------</a></td>
 </tr>
</table></form>
code qui permet d'executer formulaire:

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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Outil Import\Export </title>
</head>
 
<body>
<?php
 
if($_REQUEST['confirm']=="oui") 
{ 
$a=$_REQUEST['r1']; 
 
} 
 
 
$d= "D:\CQIET\configuration".$a;
 
 
$file = 'D:\\CQIET\\wamp\\www\\projet_NDS\\koko1.bat';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new person to the file
$current= 
"
cd D:\CQIET\sources

cqperl main.pl $d D:\CQIET";
// Write the contents back to the file
file_put_contents($file, $current);
require_once("f3.php");
 
?>
<p>&nbsp;</p>
<script language="javascript">
<!-- for(i=0,i<=2,i++){ if(document.2.r1[i].checked){    $a=document.projet2.r1[i].value;  }}</script>
</body>
</html>
Merci d'avance