단순 막대 챠트 (Bar Chart) > 기술자료 | 해피정닷컴

단순 막대 챠트 (Bar Chart) > 기술자료

본문 바로가기

사이트 내 전체검색

단순 막대 챠트 (Bar Chart) > 기술자료

PHP 단순 막대 챠트 (Bar Chart)

페이지 정보


첨부파일

본문

단순하게 막대그래프를 그리는 방법입니다.
구글 Bar Charts API를 사용해도 되지만 너무나 단순한 설문결과를 보여주는 방식이라서 기냥 만들었습니다.



<?php
// 설문1
$sql  = "SELECT sum(song01) as song01Y FROM 테이블 where song01 = '1'"; // 찬성
$result = mysql_query($sql);
$total01Y = mysql_result($result,0,0);

$sql  = "SELECT sum(song01) as song01N FROM 테이블 where song01 = '2'"; // 반대
$result = mysql_query($sql);
$total01N = mysql_result($result,0,0);

$total01 = $total01Y + $total01N;
$total01Yp = round(($total01Y / $total01 *100),2);
$total01Np = 100 - $total01Yp;


// 설문2
$sql  = "SELECT sum(song02) as song02Y FROM 테이블 where song02 = '1'"; // 찬성
$result = mysql_query($sql);
$total02Y = mysql_result($result,0,0);

$sql  = "SELECT sum(song02) as song02N FROM 테이블 where song02 = '2'"; // 반대
$result = mysql_query($sql);
$total02N = mysql_result($result,0,0);

$total02 = $total02Y + $total02N;
$total02Yp = round(($total02Y / $total02 *100),2);
$total02Np = 100 - $total02Yp;

?>

1. 투표1<br />
① 필요하다.<br />
<img src='line_01.gif' style='width:<?php echo (2.80 * $total_song01Yp); ?>px; height:13px' /> <?php echo $total_song01Y; ?>명(<?php echo $total_song01Yp; ?>%)<br />
② 필요하지 않다.<br />
<img src='line_02.gif' style='width:<?php echo (2.80 * $total_song01Np); ?>px; height:13px' /> <?php echo $total_song01N; ?>명(<?php echo $total_song01Np; ?>%)<br />
<br />
2. 투표2<br />
① 동의한다.
<img src='line_01.gif' style='width:<?php echo (2.80 * $total_song02Yp); ?>px; height:13px' /> <?php echo $total_song02Y; ?>명(<?php echo $total_song02Yp; ?>%)<br />
② 동의하지 않는다.<br />
<img src='line_02.gif' style='width:<?php echo (2.80 * $total_song02Np); ?>px; height:13px' /> <?php echo $total_song02N; ?>명(<?php echo $total_song02Np; ?>%)

댓글목록

등록된 댓글이 없습니다.


Total 195건 5 페이지
  • RSS
기술자료 목록
115
PHP   22770  2013-08-22 13:35 ~ 2021-08-20 19:00  
114
PHP   21381  2013-06-20 05:00  
113
PHP   17877  2013-06-19 00:29  
112
PHP   23152  2013-05-30 21:27  
111
PHP   18566  2013-05-28 14:27  
110
PHP   17048  2013-05-16 13:13  
열람
PHP   17599  2013-05-11 21:40  
108
PHP   17337  2013-04-17 23:13 ~ 2021-05-18 16:40  
107
PHP   32404  2013-04-16 02:21 ~ 2020-02-11 20:22  
106
PHP   16935  2013-03-26 01:49  
105
PHP   18744  2013-02-20 12:09 ~ 2021-07-15 07:19  
104
PHP   19546  2012-10-28 23:34  
103
PHP   18217  2012-06-13 03:34  
102
PHP   45883  2012-04-05 00:46  
101
PHP   42776  2012-04-04 23:04  
100
PHP   16892  2012-04-04 22:15 ~ 2021-01-18 12:04  
99
PHP   28934  2012-03-31 17:48 ~ 2018-12-17 14:52  
98
PHP   18648  2012-03-31 11:03  
97
PHP   92483  2012-03-26 22:22  
96
PHP   52059  2012-03-24 22:40 ~ 2012-03-31 00:00  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.