Recherche Scripts php de commentaire !

WRInaute passionné
Une occasion pourtoi d'apprendre le php, je peux t'aider un peux, voici un p'tit exemple que tu peux utiliser :

Code:
<form name="form" method="post" action="add.php">
<table width="41%" border="0" cellspacing="0" cellpadding="0">
  <tr>
      <td width="22%"><font size="-1" face="Verdana">Nom :</font></td>
    <td width="78%"><input name="nom" type="text" maxlength="23">
        </td>
  </tr>
  <tr>
    <td valign="top"><font size="-1" face="Verdana">Message :</font></td>
    <td><textarea name="comment" cols="35" rows="8"></textarea>
        <br>
      <input class="bouton" type="submit" value="Poster"></td>
  </tr>
  </tr>
</table>
</form>
<?php
$connexion = mysql_connect("localhost", "login", "pass"); 
mysql_select_db("$database",$connexion); 
$sql = "SELECT nom,comment,date FROM commentaire WHERE id_comment ='$comment' ORDER BY id DESC"; 
$req = mysql_query($sql); 

while($data = mysql_fetch_array($req)) { 

$comment = wordwrap($data['comment'], 25, "\n", 1);
$a = substr($data['date'], 0, 4);    
$m = substr($data['date'], 5, 2);     
$j = substr($data['date'], 8, 2);    
$date = $j.'-'.$m.'-'.$a;               
?>
<table cellspacing="1" cellpadding="0" width="100%">
<tbody>
<tr>
<td><font face="verdana" size="-1">Message de : <?php echo $data['nom']?> 
 (Post&eacute; le : <?php echo $date?>)</font></td></tr><tr>    
<td bgcolor=""><font face="verdana" size="-1"><?php echo $comment?></font></td>
</tr></tbody></table><br><br></center>
<?php }mysql_close($connexion);?>

dans la page d'action tu peux avoir un truc du genre :

Code:
<?php
$nom = $_POST['nom'];
$comment = $_POST['comment']; 
$connexion = mysql_connect("localhost", "login", "pass"); 
mysql_select_db("$database",$connexion);
$date = date("Y-m-d");
$ip = $_SERVER['REMOTE_ADDR'];
if (!empty($nom) && !empty($comment)) {
$query = "INSERT INTO guestbook (nom,comment,date,ip) VALUES(\"$nom\",\"$comment\",\"$date\",\"$ip\")"; 
...

C'est seulement un p'tit aperçu, suffit de modifier quelques trucs...
 
Nouveau WRInaute
salut
Jaimerai bien savoir le faire lol !

Mais je connai presque rien en php et jai pas trop de temps :s

Jai essayer ton script avec le form mais je pense quil faut une table non ?


Si tu veu bien tu peut maider via msn ? xpack511@msn.com
a++
 
Discussions similaires
Haut