j'aimerais bien trouver une solution car la il me renvois sur la page avec le # a la fin en plus mais il ne valide pas le formualaire ... et je ne sais plus quoi faire
le code :
<?php
require("connect.php");
/* Création d'un tableau : la première partie sera l'en-tête et n'a pas besoin d'être répétée */
?>
<table border="0" width="100%" cellpadding="1" cellspacing="2">
<tr>
<td colspan="2"><a href="newSong.php?<?php echo $SID; ?>">  <b>Ajouter un morceau</b><br><br></a></td>
</tr>
<tr>
<th width="10%" class="td3" >Dâte creation</th>
<th width="20%" class="td3" >Nom</th>
<th width="20%" class="td3" >Style</th>
<th width="35%" class="td3" >Description</th>
<th width="15%" class="td3" >Lien</th>
</tr>
<?php
/* Maintenant on va créer une nouvelle ligne dans notre tableau par ligne de données : on utilise une boucle */
$verif = mysql_query("SELECT `nom`, `description`, `date`, `genre`, `lien` FROM `mix` WHERE artiste LIKE '%". $_SESSION['login'] ."%' ");
while(($row = mysql_fetch_array($verif)) != false)
{
?>
</table>
<table border="0" width="10%" cellpadding="0" cellspacing="0">
<form method="POST" action="editsong.php" name="envoie">
<input type="hidden" name="musique" value="<?php echo $row['nom']; ?>">
<tr>
<td class="edit"><a href="#" onClick="javascript:document.envoie.submit();"><img src="icon_edit.gif" border="0"></a></td>
</tr><br>
</form>
</table>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="10%" class="liste_ouvre"><?php echo($row['date']); ?></td>
<td width="20%" class="liste"><?php echo($row['nom']); ?></td>
<td width="20%" class="liste"><?php echo($row['genre']); ?></td>
<td width="35%" class="liste"><?php echo ($row['description']); ?></td>
<td width="15%" class="liste_ferme"><a href="<?php echo($row['lien']); ?>"> Telecharger</a></a></td>
</tr>
<?php
}
?>
</table><br>