10-08-2007, 07:43 PM
Voila comment je me débrouille :
function drawBar($size,$sizemax,$img='r.png',$backcol='FFEB9C')
{
$size*=6;
$sizemax*=6;
return('<table width="'.$sizemax.'" border="1" CELLSPACING="0" CELLPADDING="0"> <td BGCOLOR="#'.$backcol.'" HEIGHT="14"><img SRC="'.$img.'" WIDTH="'.$size.'" HEIGHT="14"></td> </table>');
}
ou "gfx/r.png" est une image d'un pixel avec la couleur de son choix.
Par ex.
drawBar($pv,$pvmax);
retourne alors le code HTML du barre.
Enfin, c'est léger et rapide en tout cas.
/Lud
function drawBar($size,$sizemax,$img='r.png',$backcol='FFEB9C')
{
$size*=6;
$sizemax*=6;
return('<table width="'.$sizemax.'" border="1" CELLSPACING="0" CELLPADDING="0"> <td BGCOLOR="#'.$backcol.'" HEIGHT="14"><img SRC="'.$img.'" WIDTH="'.$size.'" HEIGHT="14"></td> </table>');
}
ou "gfx/r.png" est une image d'un pixel avec la couleur de son choix.
Par ex.
drawBar($pv,$pvmax);
retourne alors le code HTML du barre.
Enfin, c'est léger et rapide en tout cas.
/Lud