בשביל הסקר עצמו , פשוט קלוט אתה הנתונים, וע"פ
מה שהבנתי ממך זה שלכל כפתור רדיו אחוז משלו , וזה לא מחושב אוטו', לכן אפשר לעשות זאת עם כל מני שיטות, נניח switch ואז יוצר תמונה עם imagestring או כותב על תמונה בעזרת gd :
PHP קוד:
<?php
$prcnt=$_POST['poll'];
switch($prcnt)
{
case 1; /* ערך ההצבעה*/
$prcnt="100%": /* האחוז */
break;
case 2;
$prcnt="90%";
break;
}
$im = imagecreate(500, 30);
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0,23, 11);
$str="you addicted x-trip in $prcnt percentage";
imagestring($im, 5, 0, 0, $str, $textcolor);
header("Content-type: image/png");
imagepng($im);
?>