단순 막대 챠트 (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 2,641건 64 페이지
  • RSS
기술자료 목록
1381
WindowsServer   13245  2013-05-14 15:07  
1380
WindowsServer   12333  2013-05-14 15:06  
1379
HTML   20145  2013-05-12 23:43 ~ 2017-11-30 05:49  
열람
PHP   17526  2013-05-11 21:40  
1377
MySQL   24305  2013-05-11 18:26 ~ 2023-01-11 13:42  
1376
그누보드   12696  2013-05-10 02:15  
1375
일반   201947  2013-05-10 00:29  
1374
일반   27288  2013-05-10 00:11  
1373
일반   63175  2013-05-10 00:04 ~ 2016-03-30 00:00  
1372
HTML   19321  2013-05-08 11:11  
1371
일반   30959  2013-05-08 00:45 ~ 2015-01-22 00:00  
1370
JavaScript   56922  2013-05-07 01:05 ~ 2013-05-09 00:00  
1369
Adobe   14223  2013-05-06 15:05  
1368
일반   40723  2013-05-06 14:39  
1367
JavaScript   33410  2013-05-04 19:16 ~ 2019-12-16 11:47  
1366
MSSQL   14196  2013-05-03 17:55 ~ 2016-02-13 00:00  
1365
그누보드   18459  2013-05-03 16:09  
1364
XML   14118  2013-05-02 05:59 ~ 2018-02-07 06:16  
1363
HTML   25265  2013-05-01 15:22 ~ 2021-10-26 16:46  
1362
ClassicASP   18158  2013-04-26 09:13  

검색

해피정닷컴 정보

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

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