piadream

카테고리 만드는 예제.

· 2년 전 · 1126

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,187
2년 전 조회 1,013
2년 전 조회 4,327
2년 전 조회 2,061
2년 전 조회 1,607
2년 전 조회 3,001
2년 전 조회 2,803
2년 전 조회 3,899
1년 전 조회 1,885
JavaScript 2년 전 조회 1,045
OS 2년 전 조회 1,062
PHP 2년 전 조회 1,230
PHP 2년 전 조회 1,137
PHP 2년 전 조회 1,026
PHP 2년 전 조회 1,127
PHP 2년 전 조회 1,112
JavaScript 2년 전 조회 1,013
PHP 2년 전 조회 954
PHP 2년 전 조회 915
PHP 2년 전 조회 1,024
PHP 2년 전 조회 998
PHP 2년 전 조회 1,099
정규표현식 2년 전 조회 912
JavaScript 2년 전 조회 1,036
PHP 2년 전 조회 2,502
PHP 2년 전 조회 1,980
PHP 2년 전 조회 1,015
node.js 2년 전 조회 1,810
JavaScript 2년 전 조회 1,515
JavaScript 2년 전 조회 1,439