Skip to main content
mysql

12-13주차 회원관리 시스템 구성

By 11월 21st, 2024No Comments

회원가입, 회원조회, 회원삭제, 회원결과 등의 화면을 구성한다.

전체 이미지 구성

 

소스 코드 체크하기

 

리다이렉트 코드

index.php 방식

<?php
header('location: http://pohangweb.dothome.co.kr/main.html');
?>

 

테이블 업그레이드


css파일 생성
main.css
테이블 css코드를 복사

select.php
맨윗줄에
link 로 css를 연결

업로드

 

/* 5. 색상 블록 테이블 */
.table5 {
    width: 100%;
    border-collapse: collapse;
}

.table5 th, .table5 td {
    padding: 10px;
    text-align: left;
}

.table5 thead {
    background-color: #FF5733;
    color: white;
}

.table5 tbody tr:nth-child(1) td {
    background-color: #FFBD69;
}

.table5 tbody tr:nth-child(2) td {
    background-color: #FFC300;
}

.table5 tbody tr:nth-child(3) td {
    background-color: #FFD966;
}

 

 

select 상단에 추가

<link rel="stylesheet" href="main.css">
<TABLE border=1 class=table5>

 

Leave a Reply