티스토리 뷰
학생 데이터 추가
form에서 작성된 항목 (이름, 학번, 학과, 전화번호)를 php에 전달하고 php에서는 insert 쿼리를 이용하여 저장한다.
소스
html)
<!DOCTYPE HTML> <html lang="ko"> <head> <title> 학생추가 </title> <meta charset="utf-8"> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> </head> <body> <center> <h3>학생추가</h3> <form name="데이터입력" method="GET" action="04.php"> 이름 :<input type="text" name="name" /><br /> 학번 :<input type="text" name="hakbeon" /><br /> 학과 :<input type="text" name="hakgwa" /><br /> 전화번호 :<input type="text" name="tel" /><br /> <input type="submit" value="추가" /> <input type="reset" value="취소" /> </form> </center> </body> </html>
php)
<?php header("Content-type:text/html;charset=utf-8"); $name = $_GET['name']; $hakbeon = $_GET['hakbeon']; $hakgwa = $_GET['hakgwa']; $tel = $_GET['tel']; $connect = mysql_connect('localhost', 'admin', '1234'); mysql_select_db('student_db', $connect); $sql = "insert into list_table(hakbeon, name, hakgwa, tel)"; $sql .= "values ('$hakbeon','$name','$hakgwa','$tel')"; @mysql_query("set names utf8"); mysql_query($sql, $connect); $sql = "select * from list_table where name = '$name'"; $result = mysql_query($sql, $connect); $row = mysql_fetch_assoc($result); echo "<center>"; echo "<h3>저장에 성공한 레코드 목록</h3><br />"; echo "학번 : ${hakbeon}<br />"; echo "이름 : ${name}<br />"; echo "학과 : ${hakgwa}<br />"; echo "전화번호 : ${tel}<br /><br />"; echo "<a href='http://localhost/student/02.php'><input type='button' value='리스트 보기'></a>"; echo "</center>"; ?>
'■ 백엔드 ■ > PHP' 카테고리의 다른 글
10. 학생 명단 삭제 (0) | 2014.02.14 |
---|---|
9. 학생 명단 수정 (0) | 2014.02.14 |
7. 학생 명단 검색 (0) | 2014.02.14 |
6. 학생 명단 (저장) 출력 (0) | 2014.02.13 |
5. 학생기록부 프로그램 - 테이블로 몸풀기 (0) | 2014.02.13 |
댓글