== 디비 연결 테스트 == {{{ "); } $db = mysql_select_db("linflus_db"); /* $sql = "CREATE TABLE guest (no integer not null, name char(10), contents text(2000), password char(4), status integer, date date)"; $result = mysql_query($sql); if(!$result){ die('Can not create table'); }else{ echo($result); } */ $sql = "INSERT INTO guest values(1, 'ksh', 'hello', '1234', 1)"; $result = mysql_query($sql); $sql = "SELECT * FROM guest"; $result = mysql_query($sql); $obj = mysql_fetch_object($result); echo($obj->name); ?> }}} == 입출력 최종 완성 (9월 8일) == = 메인화면 ( index.php ) = {{{ 방명록
이름       비밀번호  


}}} == 데이터베이스에 연결 ( dbconnect.php ) == {{{ }}} == 쿼리를 만들때 시간을 저장하기 위해.. ( get_time.php ) == {{{ }}} == 모든 처리는 여기서... ( process.php ) == {{{ 10 ) { $posted_name = substr($_POST['input_name'],0,10); } else { $posted_name = $_POST['input_name']; } //비번 입력의 처리 if (strlen($_POST['input_pw']) > 4 ) { $posted_pw = substr($_POST['input_pw'],0,4); } else { $posted_pw = $_POST['input_pw']; } //내용 입력의 처리 if (strlen($_POST['context']) > 2000 ) { $posted_context = substr($_POST['context'],0,2000); } else { $posted_context = $_POST['context']; } $posted_status = $_POST['status']; include "get_time.php"; $query = "insert into guest (name, pw, status, contents, date) values ('$posted_name', '$posted_pw', '$posted_status', '$posted_context', '$date')"; /********************* * 쿼리를 전송 * 합니다. *********************/ if(($posted_name!="")&&($posted_pw!="")&&($posted_pw!="")) { $result = mysql_query($query, $dbconn); } header("location:index.php"); ?> }}} == 입력을 받고, 출력(페이지 추가) ( print.php ) == {{{ 기본정보 : $name $no $pw $status $date
"); echo("내 용 : $contents
"); include "print_status.php"; } for( $i=1; $i<=$total_page; $i++){ if($page == $i){ echo" [$i]"; } else{ echo"[$i]"; } } ?> }}} == 출력을 위해 필요함 ( get_record.php ) == {{{ }}} == 오늘의 상태 (print_status.php) == {{{
"); } if ($status == 2) { echo("
"); } if ($status == 3) { echo("
"); } if ($status == 4) { echo("
"); } if ($status == 5) { echo("
"); } ?> }}} == 계층도랄까.. == [http://cfile231.uf.daum.net/image/166494114C8748111943D9 클릭하셈] ---- [2010PHP]