Probléme avec mon formulaire

Résolu/Fermé
terrorist Messages postés 86 Date d'inscription vendredi 9 janvier 2009 Statut Membre Dernière intervention 6 septembre 2012 - 28 janv. 2009 à 17:56
jojodivx Messages postés 193 Date d'inscription dimanche 14 décembre 2008 Statut Membre Dernière intervention 9 avril 2009 - 28 janv. 2009 à 18:22
Bonjour,
j'ai un probléme mon formulaire n'est pas transmis car j'utilise un boutton avec lien
mon code est le suivant

<?php session_start();?>
<html>
<head>
<link rel="stylesheet" href="css/mes_im.css" type="text/css" />
</head>
<body>
<?php
require "include/fonctions.php";
$pid=$_GET['pid'];
if(isset($_SESSION["pseudo"])) $pseudo=$_SESSION["pseudo"];
$profil=creer_tab_im($pid);
$titre=$profil[0];
$comment=$profil[1];
$key=$profil[9];
$group=gr_acces_im($pid);
$public=$profil[6];
$amis=$profil[7];

echo '
<FORM action="update_image_modif.php" method="post">
<table >
<caption> Modification de l\'image</caption>
<tr>
<tr>
<td>Nom :
</td> </tr>
<tr>
<td><input type="text" name="titre" size="26" value="'.$titre.'"/>
</td>
</tr>
<tr>
<td>Description :
</td> </tr>
<tr>
<td><textarea name="comment" size="100" value="'.$comment.'"></textarea>
</td>
</tr>

<tr>
<td>Mots clés
</td> </tr>
<tr>
<td ><input type="text" name="keywords" size="26" value="'.$key.'"/>
<input type="hidden" name="pid" value="'.$pid.'"/>
</td>
</tr>
<tr>
<td style="color:red;">Acces
</td>
</tr>
<tr>
<td >Public :                                           <input type="checkbox" name="publics" ';if($public) {;echo '"checked"';} echo ' />
</td>
</tr>
<tr>
<td>Amis  :                                           <input type="checkbox" name="amis"'; if($amis) {;echo '"checked"';} echo ' />
</td>
</tr>
<tr>
<td>Autorisation aux groupes :           <select name="group[]" multiple>'; for($i=0;$i<count($group);$i++){
echo '<option';if(est_membre($pseudo,$group[$i])){ echo 'selected="selected"';} echo ' >'; $t=$group[$i]; $tt=titre_de_gid($t); echo $tt[0] ; echo '</option>' ;} echo '</select>
</td>
</tr>

<tr><td>
<input type="button" name="lien" value="modifier" onclick="self.location.href=\'update_image_modif.php\' " class="bouton"/>
      <input type="button" name="lien" value="annuler" onclick="self.location.href="'.$lien.'" " class="bouton"/> </td>
</tr>

<table/>
</form>';
?>
</body>
</html>

2 réponses

jojodivx Messages postés 193 Date d'inscription dimanche 14 décembre 2008 Statut Membre Dernière intervention 9 avril 2009 16
28 janv. 2009 à 18:05
Et comme ça ?

<input type="submit" name="lien" value="modifier" class="bouton"/>
0
terrorist Messages postés 86 Date d'inscription vendredi 9 janvier 2009 Statut Membre Dernière intervention 6 septembre 2012 1
28 janv. 2009 à 18:21
c ok mon pot
0
jojodivx Messages postés 193 Date d'inscription dimanche 14 décembre 2008 Statut Membre Dernière intervention 9 avril 2009 16
28 janv. 2009 à 18:22
N'oublie pas de passer le topic en résolu :)
0