Bonjour !

voici mon problème , je n'arrive pas à concaténer le bout de code php de la valeur input>login dans le code html ci dessous ! Pourriez vous m'aidez résoudre ce problème ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
echo '
<form method="post" action="send.php?vrif=auth">
<div align="center">
 
<p><strong> Champs d\'identification:</strong></p>    
 
<table border="0" width="350" align="center">
 
<tr>
<td width="196"><b>login:</b></td>
<td width="144"><input type="text" name="login" value="'if (isset($_POST['login'])) echo stripslashes(htmlentities(trim($_POST['login'])));'"</td>
</tr>....
Merci d'avance

Djskynet