<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>> L'idée est la suivante: faire un systeme de note par page, en affichant</p>
<p>> une ou plusieurs image selon la note ex: note 4, 4 images (comme un 4</p>
<p>> etoiles quoi), et donc faire ça pour toutes les pages du site, on peut</p>
<p>> 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 = '<img src="Global_images/dolphin.png"'</p>
<p>img += 'alt="Title" height="18" width="23">'</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 '<tr><td>%s</td><td>%d</td></tr>' % (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>