우 리 는 뉴스 시스템 으로 뉴스 를 저장 할 수 있 습 니 다.우 리 는 뉴스 에 대해 추가,삭제 등 조작 을 할 수 있 습 니 다.이렇게 하면 여러분 의 업 무량 을 줄 일 수 있 습 니 다.왜 실험 하지 않 습 니까?우선 시 계 를 만 듭 니 다.create table news ( n_id int(255) not null auto_increment, n_date datetime not null, news text not null, primary key(n_id) ); 두 번 째 단계,로그 인 정보 설정$databaseuser_name="root"; $database_password=""; $database_name="news"; $time_offset="0"; 세 번 째 단 계 는 다음 프로그램 에 사용 되 는 물건 을 함수 로 만들어 지면 을 절약 합 시다!function connect_db() { // connects to the database global $database_user_name, $database_password; $db=mysql_connect("localhost",$database_user_name,$database_password); return $db; } function db_name() { // returns the name of the database global $database_name; $db_name=$database_name; return $db_name; } function get_now() { // gets current date and time $db=connect_db(); $db_name=db_name(); mysql_select_db($db_name,$db); $sql="select now() as now"; $result=mysql_query($sql,$db); $myrow=mysql_fetch_array($result); $now=$myrow["now"]; return $now; } 네 번 째 단 계 는 뉴스 를 어떻게 표시 할 것 인 가 를 고려 합 니 다.if ($admin==1) { echo " Admin "; } echo " - News "; $db=connect_db(); $db_name=db_name(); mysql_select_db($db_name,$db); if ($show_news_sub) { $show_news = $show_news_sub; } if (!ereg("([0-9]{".strlen($show_news)."})",$show_news)) { $show_news="ALL"; } if (strtoupper($show_news)=="ALL") { $sql="select date_format(n_date,'%m/%d/%Y') as n_date, date_format(n_date,'%H:%i') as n_time ,news , n_date as date from news order by date desc"; } else { $link="All news"; $sql="select date_format(n_date,'%m/%d/%Y') as n_date, date_format(n_date,'%H:%i') as n_time , news , n_date as date from news order by n_date desc limit $show_news"; } $result=mysql_query($sql,$db); $num_rows=mysql_num_rows($result); if($num_rows!=0) { echo " "; while($myrow=mysql_fetch_array($result)) { $date=$myrow["n_date"]; $time=$myrow["n_time"]; $news=$myrow["news"]; $n_id=$myrow["n_id"]; if (strtoupper($show_date)=="Y" && strtoupper($show_time)=="Y") { $show=$date." ".$time; } else if (strtoupper($show_date)=="Y" && strtoupper($show_time)!="Y") { $show=$date; } if (strtoupper($show_date)!="Y" && strtoupper($show_time)=="Y") { $show=$time; } $cleannews=(nl2br($news)); $show $cleannews "; } echo " "; } if($admin==1){echo"