Je voudrais mettre en place une shoutbox/tagboard/flashchat pour mon blog, mais je ne sais pas du tout comment m'y prendre. Impossible de trouver des shoutbox en flash sans qu'il y ait du javascript (ce que les ynblog ne kiffent pas trop), donc j'ai trouvé un script, mais je ne sais pas comment l'intégrer... Ce n'est pas du flash, mais un combo PHP/CSS, donc je me suis dit que, peut-être, éventuellement, en passant par la feuille de style, ça pouvait se faire, mais je comprends pas trop comment en fait

* <style> * <!-- * div.chat * { * overflow: auto; * width: 200px; * height: 150px; * border: 1px #757575 solid; * padding: 3px; * background: #EEEEEE; * } * div.miniform * { * width: 200px; * border: 1px #757575 solid; * border-top: 0px; * padding: 3px; * background: #EEEEEE; * text-align: center; * } * .date * { * color: #757575; * font-family:Arial; * font-weight:bold; * font-size: 8pt * } * .pseudo * { * color: #2E19D7; * font-family: Arial; * font-size: 8pt; * font-weight: bold; * text-decoration: underline; * text-transform: capitalize; * } * .msg * {color: #757575; * font-family: Arial; * font-size: 8pt; * font-weight: normal; * text-decoration: none * } * hr.chat * { * height: 1px #D7192E dotted; * border: 1px #D7192E dotted; * } * --> * </style> * <?php * $msg = array(); * function file_save($filename, $content, $flags = 0) * {if (!($file = fopen($filename, 'w'))) * return false; * $n = fwrite($file, $content); * fclose($file); * return $n ? $n : false; * } * * if (!file_exists("./chat.php")) file_save("./chat.php","<?php\n\$msg = ".var_export($msg,TRUE)."\n?>"); * * include "chat.php"; * * while (count($msg) >= 5) array_shift($msg); * * $canpost = empty($_POST['submit']) ? 'refresh' : $_POST['submit']; * $canpost = ($canpost == 'refresh') ? 0 : 1; * if (!empty($_POST['mess']) && !empty($_POST['pseudo']) && $canpost) * {$i = count($msg); * $msg[$i]['pseudo'] = htmlentities($_POST['pseudo']); * $msg[$i]['texte'] = htmlentities($_POST['mess']); * $msg[$i]['date'] = time(); * } * * $msg2 = array_reverse($msg); * echo '<div class="chat">'; * foreach ($msg2 as $message) * {echo '<span class="pseudo">'.$message['pseudo'].'</span> <span class="date">['.date("d/m/y à H:i:s",$message['date']).']</span><br /><span class="msg">'.nl2br($message['texte']).'<br /><hr class="chat">'; * } * echo "</div>"; * * file_save("./chat.php", "<?php\n\$msg = ".var_export($msg,TRUE)."\n?>"); * ?> * <div class="miniform"> * <form method="post"> * Pseudo: <input name="pseudo" size="19"><br /> * <textarea name="mess" cols="20" rows="3"></textarea><br /> * <input name="submit" type="submit" value="POSTER"> <input name="submit" type="submit" value="REFRESH"> * </form> * </div>
merci d'avanve
