piadream

카테고리 만드는 예제.

· 2년 전 · 1174

SQL은 파일 첨부

 

[code]

 

<?php
include("conn.php");
$cate_sql="select * from category order by groupidx asc , previdx asc , depthidx asc";
$cate_result=mysqli_query($conn,$cate_sql);
$cate_total=mysqli_num_rows($cate_result);
if($cate_total < 1 ) {}
else {
echo "<div>";
while($cates=mysqli_fetch_assoc($cate_result)) {
$prevtitle=stripslashes($cates['prevtitle']);
$previd=stripslashes($cates['previd']);
$depthtitle=stripslashes($cates['depthtitle']);
$depthid=stripslashes($cates['depthid']);
$previdx=stripslashes($cates['previdx']);
$depthidx=stripslashes($cates['depthidx']);
if(($depthidx < 1) || ($depthidx == false || null) || empty($depthidx)) {
    
    echo "-    2<a href=$previd>$prevtitle</a>-</div>";}

if(($previdx >=1) && ($depthidx >=1)) {

echo "<pre>1- $depthtitle -  $depthid - </pre>";
}
else{}
}
}
?>

 

 

 

 

 

[/code]

첨부파일

category.sql (2 KB) 7회 2024-02-16 23:53
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
2년 전 조회 1,228
2년 전 조회 1,056
2년 전 조회 4,397
2년 전 조회 2,092
2년 전 조회 1,646
2년 전 조회 3,038
2년 전 조회 2,847
2년 전 조회 3,943
2년 전 조회 1,923
JavaScript 2년 전 조회 1,083
OS 2년 전 조회 1,101
PHP 2년 전 조회 1,271
PHP 2년 전 조회 1,173
PHP 2년 전 조회 1,076
PHP 2년 전 조회 1,175
PHP 2년 전 조회 1,153
JavaScript 2년 전 조회 1,048
PHP 2년 전 조회 993
PHP 2년 전 조회 947
PHP 2년 전 조회 1,057
PHP 2년 전 조회 1,036
PHP 2년 전 조회 1,135
정규표현식 2년 전 조회 949
JavaScript 2년 전 조회 1,071
PHP 2년 전 조회 2,537
PHP 2년 전 조회 2,021
PHP 2년 전 조회 1,055
node.js 2년 전 조회 1,854
JavaScript 2년 전 조회 1,558
JavaScript 2년 전 조회 1,473