본문 바로가기

기타

[cacti] color 추가 하기

cacti 에 컬러 추가하기

 

html 코드에서 color 정렬을 hex 에서 id 값으로 변경하자

 

vi $cacti_home/color.php

 

수정 전

131 :  $color_list = db_fetch_assoc("select * from colors order by hex");

 

 

수정 후

131 :  $color_list = db_fetch_assoc("select * from colors order by id");

 

vi $cacti_home/lib/html_form.php

 

수정 전

370 :  $colors_list = db_fetch_assoc("select id,hex from colors order by hex desc");

 

 

 수정 후

370 : $colors_list = db_fetch_assoc("select id,hex from colors order by id");

 

db 중 color 테이블 에 색상을 추가하자

 

 

cacti_color.sql