<html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Sans Serif">
<p>On Wednesday 12 April 2006 22:52, Rafael Muñoz Moreno-Davila wrote:</p>
<p></p>
<p>&gt; L'idée est la suivante: faire un systeme de note par page, en affichant</p>
<p>&gt; une ou plusieurs image selon la note ex: note 4, 4 images (comme un 4</p>
<p>&gt; etoiles quoi), et donc faire ça pour toutes les pages du site, on peut</p>
<p>&gt; aussi voter et donc changer la note.</p>
<p></p>
<p>Il est tard et j'ai un peu les yeux qui se croisent a force de regarder mes propres problemes MySQL :-) </p>
<p></p>
<p>Je ne suis pas sure d'avoir compris... mais c'est sans doute moi... y'a des jousr comme ca :-)</p>
<p></p>
<p>Voici ma vision du probleme en Python... n'au plus pratique php depuis...</p>
<p></p>
<p># conect to db etc. 'cursor' being the db connection</p>
<p></p>
<p>cmd = 'SELECT note FROM ' + table</p>
<p>cursor.execute(cmd)</p>
<p></p>
<p># I manualy split the string to avoid the mailer to do it...</p>
<p>img = '&lt;img src=&quot;Global_images/dolphin.png&quot;'</p>
<p>img += 'alt=&quot;Title&quot; height=&quot;18&quot; width=&quot;23&quot;&gt;'</p>
<p></p>
<p># I assume SELECT result is a collection of 'int' !</p>
<p>for n  in cursor.fetchall() :</p>
<p>    cell = ''</p>
<p>    # Loop n times to dump 'img' code</p>
<p>    for i in range(n) :</p>
<p>        cell += img</p>
<p>    # I also assume it's embeded in a table</p>
<p>    print '&lt;tr&gt;&lt;td&gt;%s&lt;/td&gt;&lt;td&gt;%d&lt;/td&gt;&lt;/tr&gt;' % (cell, n)</p>
<p></p>
<p># The rest of the code is obvious...</p>
<p></p>
<p></p>
<p>dc</p>
<p></p>
</body></html>