piadream

카테고리 만드는 예제.

· 2년 전 · 1179

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,230
2년 전 조회 1,059
2년 전 조회 4,412
2년 전 조회 2,097
2년 전 조회 1,648
2년 전 조회 3,045
2년 전 조회 2,853
2년 전 조회 3,950
2년 전 조회 1,934
JavaScript 2년 전 조회 1,092
OS 2년 전 조회 1,109
PHP 2년 전 조회 1,276
PHP 2년 전 조회 1,179
PHP 2년 전 조회 1,079
PHP 2년 전 조회 1,180
PHP 2년 전 조회 1,159
JavaScript 2년 전 조회 1,052
PHP 2년 전 조회 996
PHP 2년 전 조회 953
PHP 2년 전 조회 1,060
PHP 2년 전 조회 1,041
PHP 2년 전 조회 1,138
정규표현식 2년 전 조회 952
JavaScript 2년 전 조회 1,074
PHP 2년 전 조회 2,539
PHP 2년 전 조회 2,025
PHP 2년 전 조회 1,057
node.js 2년 전 조회 1,856
JavaScript 2년 전 조회 1,561
JavaScript 2년 전 조회 1,477