Voila, j'ai mon formulaire, quand je veux modifier une fiche cliente (par exemple) je passe donc par celui-ci, il y a des boutons radio et je voudrais voir la valeur de ceux-ci, en fait admettons que j'ai 3 choix, j'ai donc 3 "cases", et ben quand je modifie la fiche, ça serait bien que la bonne case soit deja cochée...
J'ai essayer une fonction :
Code :
- function notation($str) {
- if($row[6] == "$str" )
- return 'checked="checked"';
- else
- return '';
- }
|
Et dans mon formulaire voila comment je l'appelle :
Code :
- <tr>
- <td><input type="radio" name="radiobutton" value="1" '.notation(1).' /></td>
- <td><img src="rs.png" width="27" height="29" alt="" /></td>
- </tr>
|
Mais ça ne fonctionne pas :
<b>Notice</b>: Undefined variable: notation...
et : <b>Fatal error</b>: Call to undefined function: () in...
Message édité par KdZ' le 07-11-2003 à 11:01:40