Bonsoir à tous, désolez de ne pas avoir répondu plus tôt mais ma maman était malade et je n'est pas pu me connectez.
Vous avez demander mon code et les voici : le formulaire d'abord et le script php ensuite :
<html><head>
<style type="text/ccs">
</style></head>
<body>
<form method="post" action="http://127.0.0.1/Cours.php" target="avis">
<table class="avis" style="background:rgba(250, 250, 250, 1);">
<tr><th colspan="2" style="vertical-align:top; color:blue; background:#87CEFA; font-family:arial;">Votre avis sur ce cours</th></tr>
<tr>
<td colspan="2">
<input name="nom" type="text" placeholder="Votre nom" style="width:100%; height:25px;" maxlength="20"/>
<br><textarea name="avis" placeholder="Votre avis" style="width:100%; height:40px;" maxlength="150"></textarea>
</td>
</tr>
<tr valign="middle">
<td width="140"><input type="reset" value="Annuler" style="height:30px; width:130px; background:lightgreen; border-radius:4px; border:1px solid; cursor:pointer; color:blue;"/></td>
<td><div id="replie" style="display:block;"><span onclick="document.getElementById('deplie').style.display='block'; document.getElementById('replie').style.display='none';"><input type="submit" value="Publier" style="height:30px; width:60px; background:royalblue; color:white; border-radius:4px; border:none;"/></span></div></td>
</tr>
</table></form>
<div id="deplie" style="display:none; position:relative; top:-9.1em; left:0em;">
<table bgcolor="whitesmoke">
<tr>
<td width="178"></td>
<td>
<span onclick="document.getElementById('replie').style.display='block'; document.getElementById('deplie').style.display='none';">
<a style="background:red; color:#fff; font-weight:bold; font-family:arial black; padding-left:3px; padding-right:3px; cursor:pointer;" title="Fermer la fenêtre">X</a>
</span>
</td>
</tr>
</table>
<iframe width="210" height="100" frameborder="no" name="avis" marginheight="0" marginwidth="0" style="background:whitesmoke;"></iframe>
</div>
</body>
</html>
<!-- ET MAINTENANANT VOICI LE SCRIPT PHP -->
<html>
<body>
<?php
mysql_connect("localhost","root","") or die('Erreur de connexion');
mysql_select_db("Dimtrov") or die('Base de donnée introuvable');
if(isset($_POST['nom']) and isset($_POST['avis']))
{$nom=$_POST['nom'];
$avis=$_POST['avis'];
mysql_query("insert into cours values ('$nom','$avis')") or die('Problème dans la base! veillez ressayer dans un instant');
mysql_query("delete from cours where nom='' or avis='' ") or die('Mauvaise syntaxe');
}
$reponse=mysql_query("select * from cours") or die("Problè;me de requette");
while($rep=mysql_fetch_array($reponse))
{echo'<font color="blue" size="3" face="arial" style="border-bottom:1px dotted gray; text-transform:capitalize;">'.$rep['nom'].'</font>'.'<br>';
echo' '.'<font face="calibri">'.$rep['avis'].'</font>'.'<br><br>';
}
mysql_close();
?>
</body>
</html>
merci d'avance