piadream

게시판별 카테고리 만들기.

· 2년 전 · 1172

SQL 파일 첨부합니다.

[code]

<?php
include("conn.php");
#########input/edit example~~
echo "<form><div><select name=selects><option value=default selected disabled>선택</option>";
$board_sql="select * from `table`";
$board_result=mysqli_query($conn,$board_sql);
while($board=mysqli_fetch_assoc($board_result)) {
$tableidx=stripslashes($board['tableidx']);
$number=stripslashes($board['number']);
$title=stripslashes($board['title']);
$hit=stripslashes($board['hit']);
$title=stripslashes($board['title']);
$write=stripslashes($board['write']);
$day=stripslashes($board['day']);
$boardid=stripslashes($board['boardid']);
$tablecate_sql="select * from  `board-category` where `tableid` like '$boardid'";
$tablecate_result=mysqli_query($conn,$tablecate_sql);
$tablecate_total=mysqli_num_rows($tablecate_result);
//if(tablecate_total < 1 ) {}
//else {
while($cnscate=mysqli_fetch_assoc($tablecate_result)) {
$cateid=stripslashes($cnscate['cateid']);
$catename=stripslashes($cnscate['catename']);
echo "<option value=$cateid >$catename</option><input type=text name=test size=50 maxlength=50 value=abc><input type=submit value=posting></form></div>";}
}
?>

[/code]

첨부파일

structure.sql (4.6 KB) 4회 2024-02-18 20:15
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
2년 전 조회 1,296
2년 전 조회 1,314
2년 전 조회 1,228
2년 전 조회 1,056
2년 전 조회 4,395
2년 전 조회 2,091
2년 전 조회 1,646
2년 전 조회 3,038
2년 전 조회 2,846
2년 전 조회 3,940
2년 전 조회 1,921
JavaScript 2년 전 조회 1,081
OS 2년 전 조회 1,101
PHP 2년 전 조회 1,269
PHP 2년 전 조회 1,173
PHP 2년 전 조회 1,075
PHP 2년 전 조회 1,172
PHP 2년 전 조회 1,151
JavaScript 2년 전 조회 1,048
PHP 2년 전 조회 992
PHP 2년 전 조회 947
PHP 2년 전 조회 1,057
PHP 2년 전 조회 1,036
PHP 2년 전 조회 1,135
정규표현식 2년 전 조회 948
JavaScript 2년 전 조회 1,071
PHP 2년 전 조회 2,537
PHP 2년 전 조회 2,021
PHP 2년 전 조회 1,055
node.js 2년 전 조회 1,853