View Single Post
ישן 02-06-06, 22:51   # 2
BBman
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 32
הודעות: 608
שלח הודעה באמצעות MSN אל BBman

BBman לא מחובר  

בשביל הסקר עצמו , פשוט קלוט אתה הנתונים, וע"פ מה שהבנתי ממך זה שלכל כפתור רדיו אחוז משלו , וזה לא מחושב אוטו', לכן אפשר לעשות זאת עם כל מני שיטות, נניח switch ואז יוצר תמונה עם imagestring או כותב על תמונה בעזרת gd :
PHP קוד:
<?php
$prcnt
=$_POST['poll'];
switch(
$prcnt)
{
    case 
1/* ערך ההצבעה*/
    
$prcnt="100%"/* האחוז */
    
break;
    case 
2;
    
$prcnt="90%";
    break;
}

$im imagecreate(50030);
$bg imagecolorallocate($im255255255);
$textcolor imagecolorallocate($im0,2311);
$str="you addicted x-trip in $prcnt percentage";

imagestring($im500$str$textcolor);

header("Content-type: image/png");
imagepng($im);


?>