묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
여기서 문제점좀 찾아주세요 nzeo에잇는 강좌 보구 하는건데 ..꽉 막혓어욤..
2002.12.03 14:44
<?
include "dbconn.php";
$total=mysql_num_rows(mysql_query("select no from mboard_$db"));
?>
<table border="1" width="700">
<tr>
<td width="3%">
</td>
<td width="80%">
전체글수 : <?=$total?>
</td>
</tr>
<tr>
<td width="3%">
NO
</td>
<td width="80%">
Title
</td>
<td width="7%">
Name
</td>
<td width="7%">
Date
</td>
<td width="3%">
Hit
</td>
</tr>
<?
if(!page) $page=1;
$totalpages=ceil($total/10);
$start=($page-1)*10;
$temp=mysql_query("select * from mboard_$db order by no desc limit $total");
$total=mysql_num_rows($temp);
while($data=mysql_fetch_array($temp)){
$no=$data[no];
$name=stripslashes($data[name]);
$name="<a href=sendmail.php?mail=$data[email]&name=$data[name]>$name</a>";
$title=stripslashes($data[title]);
$title="<a href=view.php?db=$db&no$no&page=$page>$title</a>";
$hit=$data[hit];
$date=date("Y-m-d",$data[date]);
?>
<tr>
<td width="3%"><?=$no?></td>
<td width="80%"><?=$title?></td>
<td width="7%"><?=$name?></td>
<td width="7%"><?=$date?></td>
<td width="3%"><?=$hit?></td>
</tr>
<?} ?>
<tr>
<td>
</td>
<td>
<?
if ($totalpages > 1)
{
$total_count = ceil($totalpages/10);
$page_count = ceil($page/10);
$start_page = ($page_count - 1) * 10 +a;
$end_page = $start_page + 9;
if ($end_page > $totalpages)
{
$end_page = $totalpages;
}
if($page > 10){
$prev_page = $start_page - 1;
ehco " <a href='list.php?db=$db&page=$prev_page'>[Back]</a> "; <--여기가 77번줄일껄요..
}
for ($i=$start_page;$i<=$end_page;$i++){
if($i==$page){echo " <b>$i</b>";}
else {echo " <a href='list.php?db=$db&page=$i'>$i</a>";}
}
if($totalpages > 10){
$end_page = $end_page+1;
echo "<a href='list.php?db=$db&page=$end_page'>[Next]</a>";
}
}
?>
<td>
</table>
우선 소스는 이거구욥 강좌 페이지는
http://www.nzeo.com/bbs/zboard.php?id=p_study&page=1&sn1=&divpage=1&sn=off&ss=on&sc=off&keyword=게시판&select_arrange=headnum&desc=asc&no=393
여기입니다 -0-;;
에러 명은
Parse error: parse error, unexpected '"' in d:apm_setuphtdocsmarulist.php on line 77
이러고 뜨네욥
어디가 문제인가요?
그리고 저기 위에 db에서 글내용 불러오는 부분잇잔아요..
$temp=mysql_query("select * from mboard_$db order by no desc limit $total");
이부분에서 강좌되로 $total을
$start,10 으로 써주면 안되더군요..
강좌에선 저러고 스라고햇는데..;;
$total로 하면 느려지죠?
일반적인경에 비해서.
초보는 괴롭네요 -0-
어디 에러명 쉽게 이해할수있게 강좌 올려노은곳 없을까요?
저게 무슨소린지 몰라서 못하겟떠요;;
include "dbconn.php";
$total=mysql_num_rows(mysql_query("select no from mboard_$db"));
?>
<table border="1" width="700">
<tr>
<td width="3%">
</td>
<td width="80%">
전체글수 : <?=$total?>
</td>
</tr>
<tr>
<td width="3%">
NO
</td>
<td width="80%">
Title
</td>
<td width="7%">
Name
</td>
<td width="7%">
Date
</td>
<td width="3%">
Hit
</td>
</tr>
<?
if(!page) $page=1;
$totalpages=ceil($total/10);
$start=($page-1)*10;
$temp=mysql_query("select * from mboard_$db order by no desc limit $total");
$total=mysql_num_rows($temp);
while($data=mysql_fetch_array($temp)){
$no=$data[no];
$name=stripslashes($data[name]);
$name="<a href=sendmail.php?mail=$data[email]&name=$data[name]>$name</a>";
$title=stripslashes($data[title]);
$title="<a href=view.php?db=$db&no$no&page=$page>$title</a>";
$hit=$data[hit];
$date=date("Y-m-d",$data[date]);
?>
<tr>
<td width="3%"><?=$no?></td>
<td width="80%"><?=$title?></td>
<td width="7%"><?=$name?></td>
<td width="7%"><?=$date?></td>
<td width="3%"><?=$hit?></td>
</tr>
<?} ?>
<tr>
<td>
</td>
<td>
<?
if ($totalpages > 1)
{
$total_count = ceil($totalpages/10);
$page_count = ceil($page/10);
$start_page = ($page_count - 1) * 10 +a;
$end_page = $start_page + 9;
if ($end_page > $totalpages)
{
$end_page = $totalpages;
}
if($page > 10){
$prev_page = $start_page - 1;
ehco " <a href='list.php?db=$db&page=$prev_page'>[Back]</a> "; <--여기가 77번줄일껄요..
}
for ($i=$start_page;$i<=$end_page;$i++){
if($i==$page){echo " <b>$i</b>";}
else {echo " <a href='list.php?db=$db&page=$i'>$i</a>";}
}
if($totalpages > 10){
$end_page = $end_page+1;
echo "<a href='list.php?db=$db&page=$end_page'>[Next]</a>";
}
}
?>
<td>
</table>
우선 소스는 이거구욥 강좌 페이지는
http://www.nzeo.com/bbs/zboard.php?id=p_study&page=1&sn1=&divpage=1&sn=off&ss=on&sc=off&keyword=게시판&select_arrange=headnum&desc=asc&no=393
여기입니다 -0-;;
에러 명은
Parse error: parse error, unexpected '"' in d:apm_setuphtdocsmarulist.php on line 77
이러고 뜨네욥
어디가 문제인가요?
그리고 저기 위에 db에서 글내용 불러오는 부분잇잔아요..
$temp=mysql_query("select * from mboard_$db order by no desc limit $total");
이부분에서 강좌되로 $total을
$start,10 으로 써주면 안되더군요..
강좌에선 저러고 스라고햇는데..;;
$total로 하면 느려지죠?
일반적인경에 비해서.
초보는 괴롭네요 -0-
어디 에러명 쉽게 이해할수있게 강좌 올려노은곳 없을까요?
저게 무슨소린지 몰라서 못하겟떠요;;