<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[lesCigales.ORG - Hébergement gratuit sans publicité - [PHP] Retour à la ligne]]></title>
		<link>https://forum.lescigales.org/topic700-php-retour-a-la-ligne.html</link>
		<atom:link href="https://forum.lescigales.org/feed-rss-topic700.xml" rel="self" type="application/rss+xml" />
		<description><![CDATA[Messages les plus récents de [PHP] Retour à la ligne.]]></description>
		<lastBuildDate>Tue, 01 Dec 2009 20:19:30 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3861.html#p3861</link>
			<description><![CDATA[<p>Hum .... ^^ <br />- Qui moi? Mes chevilles? ^^ Nan.... Jamais!! <img src="https://forum.lescigales.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (Mattrix)]]></author>
			<pubDate>Tue, 01 Dec 2009 20:19:30 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3861.html#p3861</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3857.html#p3857</link>
			<description><![CDATA[<p>Mais bien sûr que toad avait raison, qui en doutait ? <img src="https://forum.lescigales.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (toad)]]></author>
			<pubDate>Tue, 01 Dec 2009 19:55:35 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3857.html#p3857</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3856.html#p3856</link>
			<description><![CDATA[<p>C&#039;est bon, problème résolu, Toad avait raison c&#039;est ce mysql_real_escape_ le fautif. <img src="https://forum.lescigales.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /><br />Voilà mon code final:</p><div class="codebox"><pre><code>if (isset($_POST[&#039;pseudo&#039;]) AND isset($_POST[&#039;message&#039;]))
{

$heur = date(&#039;H&#039;) + 1;
$date = date(&#039;d/m/y à &#039;) . $heur . date(&#039;:i&#039;);
$pseudo = mysql_real_escape_string(htmlspecialchars($_POST[&#039;pseudo&#039;]));
$message = mysql_real_escape_string(nl2br(htmlspecialchars($_POST[&#039;message&#039;])));
mysql_query(&quot;INSERT INTO livredor VALUES(&#039;&#039;, &#039;&quot; . $pseudo . &quot;&#039;, &#039;&quot; . $message . &quot;&#039;, &#039;&quot; . $date . &quot;&#039;)&quot;);

}</code></pre></div><p>Merci à tous de m&#039;avoir aidé! Maintenant j&#039;ai un livre d&#039;or sans bug!! <br />J&#039;espère que cette erreur bête pourra aider certains qui ont le même problème.<br />Bonne fin de soirée à tous!! <img src="https://forum.lescigales.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (Mattrix)]]></author>
			<pubDate>Tue, 01 Dec 2009 18:54:57 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3856.html#p3856</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3855.html#p3855</link>
			<description><![CDATA[<p>essaye ca<br />$heur = date(&#039;H&#039;) + 1;<br />$date = date(&#039;d/m/y à &#039;) . $heur . date(&#039;:i&#039;);<br />$pseudo = mysql_real_escape_string($_POST[&#039;pseudo&#039;]);<br />$message = mysql_real_escape_string($_POST[&#039;message&#039;]);<br />mysql_query(&quot;INSERT INTO livredor VALUES(&#039;&#039;, &#039;&quot; . $pseudo . &quot;&#039;, &#039;&quot; . $message . &quot;&#039;, &#039;&quot; . $date . &quot;&#039;)&quot;);</p><p>}</p><br /><br /><p>et pour les afficher<br />echo htmlspecialchars(stripslashes[message]);</p>]]></description>
			<author><![CDATA[null@example.com (infobarquee)]]></author>
			<pubDate>Tue, 01 Dec 2009 18:38:11 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3855.html#p3855</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3853.html#p3853</link>
			<description><![CDATA[<p>Pour toad: Tu voudrais dire que je doit mettre le nl2br avant le mysql_real_escape_.. ?<br />ex: $message = mysql_real_escape_string(nl2br(htmlspecialchars($_POST[&#039;message&#039;])));</p><p>Pour Infobarquee: <br /></p><div class="codebox"><pre><code>if (isset($_POST[&#039;pseudo&#039;]) AND isset($_POST[&#039;message&#039;]))
{

$heur = date(&#039;H&#039;) + 1;
$date = date(&#039;d/m/y à &#039;) . $heur . date(&#039;:i&#039;);
$pseudo = mysql_real_escape_string(htmlspecialchars($_POST[&#039;pseudo&#039;]));
$message = mysql_real_escape_string(htmlspecialchars($_POST[&#039;message&#039;]));
$message = nl2br($message);
mysql_query(&quot;INSERT INTO livredor VALUES(&#039;&#039;, &#039;&quot; . $pseudo . &quot;&#039;, &#039;&quot; . $message . &quot;&#039;, &#039;&quot; . $date . &quot;&#039;)&quot;);

}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Mattrix)]]></author>
			<pubDate>Tue, 01 Dec 2009 18:01:32 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3853.html#p3853</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3850.html#p3850</link>
			<description><![CDATA[<p>Pour les curieux, voilà la liste des caractères échappés par mysql:</p><div class="codebox"><pre class="c" style="font-family:monospace;"><span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>from<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />&nbsp; &nbsp; <span style="color: #b1b100;">case</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">:</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #808080; font-style: italic;">/* Must be escaped for 'mysql' */</span><br />&nbsp; &nbsp; &nbsp; escape<span style="color: #339933;">=</span> <span style="color: #ff0000;">'0'</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; <span style="color: #b1b100;">case</span> <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\n</span>'</span><span style="color: #339933;">:</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* Must be escaped for logs */</span><br />&nbsp; &nbsp; &nbsp; escape<span style="color: #339933;">=</span> <span style="color: #ff0000;">'n'</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; <span style="color: #b1b100;">case</span> <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\r</span>'</span><span style="color: #339933;">:</span><br />&nbsp; &nbsp; &nbsp; escape<span style="color: #339933;">=</span> <span style="color: #ff0000;">'r'</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; <span style="color: #b1b100;">case</span> <span style="color: #ff0000;">'\<span style="color: #000099; font-weight: bold;">\'</span>:<br />&nbsp; &nbsp; &nbsp; escape= '</span>\\<span style="color: #ff0000;">';<br />&nbsp; &nbsp; &nbsp; break;<br />&nbsp; &nbsp; case '</span>\<span style="color: #ff0000;">''</span><span style="color: #339933;">:</span><br />&nbsp; &nbsp; &nbsp; escape<span style="color: #339933;">=</span> <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\'</span>'</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; <span style="color: #b1b100;">case</span> <span style="color: #ff0000;">'&quot;'</span><span style="color: #339933;">:</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #808080; font-style: italic;">/* Better safe than sorry */</span><br />&nbsp; &nbsp; &nbsp; escape<span style="color: #339933;">=</span> <span style="color: #ff0000;">'&quot;'</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; <span style="color: #b1b100;">case</span> <span style="color: #ff0000;">'<span style="color: #006699; font-weight: bold;">\032</span>'</span><span style="color: #339933;">:</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* This gives problems on Win32 */</span><br />&nbsp; &nbsp; &nbsp; escape<span style="color: #339933;">=</span> <span style="color: #ff0000;">'Z'</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span><br />&nbsp; &nbsp; <span style="color: #009900;">&#125;</span></pre></div>]]></description>
			<author><![CDATA[null@example.com (toad)]]></author>
			<pubDate>Tue, 01 Dec 2009 10:20:31 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3850.html#p3850</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3848.html#p3848</link>
			<description><![CDATA[<p>bonjour,<br />tu pourrais montrer ton code et dire aussi le type de champs dans ta bdd.</p><p>Toad m&#039;a devancé <img src="https://forum.lescigales.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (infobarquee)]]></author>
			<pubDate>Tue, 01 Dec 2009 10:15:35 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3848.html#p3848</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3846.html#p3846</link>
			<description><![CDATA[<p>Je viens de faire des tests et c&#039;est mysql_real_escape_string() qui escape également les \n, tu peux soit l&#039;appeler au dernier moment (comme il se doit), avant de faire une injection sql et ca marchera, soit laisser tel quel et faire la conversion lors de l&#039;affichage:</p><p>Première méthode:<br /></p><div class="codebox"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$message</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/nl2br"><span style="color: #990000;">nl2br</span></a><span style="color: #009900;">&#40;</span><a href="http://www.php.net/htmlspecialchars"><span style="color: #990000;">htmlspecialchars</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'message'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div><p>Seconde méthode:<br /></p><div class="codebox"><pre class="php" style="font-family:monospace;"><a href="http://www.php.net/echo"><span style="color: #990000;">echo</span></a> <span style="color: #0000ff;">'&lt;p&gt;&lt;i class=&quot;date&quot;&gt;Le '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$donnees</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'date'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/i&gt;&lt;strong&gt; '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$donnees</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'pse\<br />udo'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/strong&gt; a écrit :&lt;br /&gt;'</span> <span style="color: #339933;">.</span> <a href="http://www.php.net/nl2br"><span style="color: #990000;">nl2br</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$donnees</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'message'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/p&gt;'</span><span style="color: #339933;">;</span></pre></div>]]></description>
			<author><![CDATA[null@example.com (toad)]]></author>
			<pubDate>Tue, 01 Dec 2009 10:13:50 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3846.html#p3846</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3841.html#p3841</link>
			<description><![CDATA[<p>Je ne t&#039;en veux pas d&#039;avoir poster apres mon post. <br />Mais il ne m&#039;affiche toujours pas les retours à la ligne. Essayez par vous même : <a href="http://mtdev.lescigales.org/livredor.php">http://mtdev.lescigales.org/livredor.php</a>&nbsp; (vous pouvez faire des test je les supprimerais avec le mysql.)</p>]]></description>
			<author><![CDATA[null@example.com (Mattrix)]]></author>
			<pubDate>Tue, 01 Dec 2009 06:10:26 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3841.html#p3841</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3839.html#p3839</link>
			<description><![CDATA[<div class="codebox"><pre><code>foreach ($_POST as $name =&gt; $value) {
        $_POST[$name]=mysql_escape_string($value);
}</code></pre></div><p>Simple, efficace et... sûre.</p>]]></description>
			<author><![CDATA[null@example.com (Eric2A)]]></author>
			<pubDate>Tue, 01 Dec 2009 00:27:39 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3839.html#p3839</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3838.html#p3838</link>
			<description><![CDATA[<div class="quotebox"><cite>toad a écrit:</cite><blockquote><p>Oui, exactement, alors pourquoi parler de l&#039;insertion dans une base de données ? <img src="https://forum.lescigales.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p></blockquote></div><p>Parce que je sais très bien que tu aurais relevé la chose <img src="https://forum.lescigales.org/img/smilies/wink.png" width="15" height="15" alt="wink" /> ou qu&#039;elle aurait été demandé.</p><p>@ Eric2A<br />Non je ne le prends pas mal du tout</p><p>voilà mon code que j&#039;ai adapté pour ici, il vaut ce qu&#039;il vaut</p><div class="quotebox"><blockquote><p>if ($_POST) {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;foreach ($_POST as $name =&gt; $value) {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[$name]=mysql_escape_string($value);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br /> $err=check();<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if($err) {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &quot;&lt;font color=&#039;red&#039;&gt;&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for ($i=0;$i&lt;sizeof($err);$i++) {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo $err[$i].&quot;&lt;br&gt;&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br /> else {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$query=&quot;INSERT INTO `livredor` (`date`,`text`) VALUES (NOW(),&#039;&quot;.$_POST[&#039;text&#039;].&quot;&#039;)&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mysql_query($query) or die(mysql_error());<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &quot;&lt;meta http-equiv=&#039;refresh&#039; content=&#039;0; url=livredor.php&#039;&gt;&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit();<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />}</p><br /><p>function check() {<br /> global $path,$id;<br /> $err=Array();</p><br /><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (!$_POST[&#039;text&#039;]) $err[sizeof($err)]=&quot;Veuillez entrer un texte&quot;;</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return $err;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (infobarquee)]]></author>
			<pubDate>Tue, 01 Dec 2009 00:07:52 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3838.html#p3838</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3837.html#p3837</link>
			<description><![CDATA[<p>Infobarquee et Toad, je vais vous faire encore rire...</p><p><strong>Mattrix, je ne vois pas d&#039;où peux venir ton problême, vu que ton code est bon.</strong></p><p>Désolé !</p><p>La prochaine fois, je participerais quand je serais sûr d&#039;avoir la solution.</p><p>@ Infobarquee :<br />J&#039;éspère que tu n&#039;as pas pris mal que je parle de sécurité après ton post.</p>]]></description>
			<author><![CDATA[null@example.com (Eric2A)]]></author>
			<pubDate>Mon, 30 Nov 2009 23:21:42 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3837.html#p3837</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3835.html#p3835</link>
			<description><![CDATA[<p>Pour répondre à eric, enfait je veux que dans la base de donné mysql il enregistre les enter sous la forme &lt;br&gt; pour que quand je fasse un petit echo en bas de la page il me mette les retours à la ligne. hors mon nl2br() me les enregistres sous la forme \r\n et donc le html ne les transforme pas en retour à la ligne.</p><p>Mon php (partiel): </p><p>&lt;?php<br />$pseudo = mysql_real_escape_string(htmlspecialchars($_POST[&#039;pseudo&#039;]));<br />$message = mysql_real_escape_string(htmlspecialchars($_POST[&#039;message&#039;]));<br />$message = nl2br($message);<br />?&gt;</p>]]></description>
			<author><![CDATA[null@example.com (Mattrix)]]></author>
			<pubDate>Mon, 30 Nov 2009 22:28:51 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3835.html#p3835</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3833.html#p3833</link>
			<description><![CDATA[<p>Oui, exactement, alors pourquoi parler de l&#039;insertion dans une base de données ? <img src="https://forum.lescigales.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (toad)]]></author>
			<pubDate>Mon, 30 Nov 2009 21:32:31 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3833.html#p3833</guid>
		</item>
		<item>
			<title><![CDATA[Re: [PHP] Retour à la ligne]]></title>
			<link>https://forum.lescigales.org/post3831.html#p3831</link>
			<description><![CDATA[<p>Mea culpa, pfff<br />la prochaine fois je mettrais tout mon script, et puis quoi encore? <img src="https://forum.lescigales.org/img/smilies/smile.png" width="15" height="15" alt="smile" /> <img src="https://forum.lescigales.org/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>on demande pour le retour chariot, pas pour la sécurité, non? <img src="https://forum.lescigales.org/img/smilies/wink.png" width="15" height="15" alt="wink" /></p>]]></description>
			<author><![CDATA[null@example.com (infobarquee)]]></author>
			<pubDate>Mon, 30 Nov 2009 18:57:43 +0000</pubDate>
			<guid>https://forum.lescigales.org/post3831.html#p3831</guid>
		</item>
	</channel>
</rss>
