묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
이 소스좀 봐주세요
2006.08.30 23:33
http://ele.new21.net/4tionhttp://ele.new21.net/4tion
아래소스는 위의 사이트에서 적용시킨 소스인데요
공지 밑 중앙의 핫뉴스쪽에 보시면... 첫번째 뉴스는 본문이 4줄로 출력되는데
2번째 뉴스는 3줄로 출력됩니다.
거기다가 두번째뉴스의 제목길이도 첫번째 뉴스보다 길이가 작구요..;;
제대로된것 같은데 이상하게 안되네요
소스 보시고 아시는분은 뭐가 문제인지 좀 꼽아주세요..
부탁드립니다 (__)
좋은하루 되세요
------ 소 스 -------------------------------------------------------------------------------------
<?
// 자신의 계정에 맞게 설정해 주세요.
$디비호스트 = "localhost"; //디비 호스트를 적습니다.
$디비아이디 = "xxxx"; // 디비아이디를 적습니다.
$디비비밀번호 = "xxxx"; // 디비비밀번호를 적습니다.
$디비네임 = " xxxx"; // 디비네임을 적습니다.
$제로보드경로 = "http://ele.new21.net/bbs"; // 제로보드가 설치되어 있는 상대경로를 적습니다. 끝에 /는 넣지 마세요.
$제목길이 = "20"; // 최대 제목 글자수를 적습니다.
// 다시한번 위 설정이 맞는지 확인하세요.
/*
function cut_str($msg,$cut_size)
{
if($cut_size<=0) return $msg;
if(ereg("[re]",$msg)) $cut_size=$cut_size+4;
for($i=0;$i<$cut_size;$i++) if(ord($msg[$i])>127) $han++; else $eng++;
$cut_size=$cut_size+(int)$han*0.6;
$point=1;
for ($i=0;$i<strlen($msg);$i++)
{
if ($point>$cut_size) {return $pointtmp."..."};
if (ord($msg[$i])<=127)
{
$pointtmp.= $msg[$i];
if ($point%$cut_size==0) {return $pointtmp."..."};
}
else
{
if ($point%$cut_size==0) {return $pointtmp."..."};
$pointtmp.=$msg[$i].$msg[++$i];
$point++;
}
$point++;
}
return $pointtmp;
}
*/
function fine9($id, $number)
{
global $디비호스트,$디비아이디,$디비비밀번호,$디비네임,$제로보드경로,$제목길이,$올드아이콘,$뉴아이콘;
$디비접속=mysql_connect($디비호스트,$디비아이디,$디비비밀번호);
mysql_select_db($디비네임,$디비접속);
$result=mysql_query("select * from zetyx_board_$id order by no desc limit $number",$디비접속) or die(mysql_error());
while($data=mysql_fetch_array($result))
{
$name = stripslashes($data[name]);
$data[memo] = stripslashes($data[memo]);
$data[memo]=cut_str2($data[memo],88); // 최대 본문 글자수
$data[subject] = stripslashes($data[subject]);
$data[subject]=cut_str($data[subject],16); // 최대 제목 글자수
$passtime = (mktime()-$data[reg_date])/3600;
if($passtime <48) {
$data[subject] = $data[subject];
}else{
$data[subject] = $data[subject];
}
if (!stripslashes($data[file_name1]))
{
echo " <style>
<!--
BODY{cursor:url('2.cur');}
//--!-->
</style>";
echo "<style>
.memos22 {font-family:돋움;font-size:8pt;color:909090;line-height:140%;letter-spacing:-1}
.titles2 {font_family:돋움;font-size:11pt;color:blue;line-height:130%;letter-spacing:-1}
</style>";
echo("<table border='0' cellpadding='0' cellspacing='0' width='96%' height='113'>");
echo("<tr>");
echo("<td width='100%' colspan=0 class=titles2 style=padding-left:8px;><color=gray><img src=http://ele.new21.net/bbs/latest_skin/nzeo/cokke_gallry/images/arrow2.gif> <b></font> <a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='_self'>".$data[subject]."</b></a></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='100%' valign=top class=memos22 style=padding-left:8px; style=text-align:justify;><a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='+ '+ '_self'>".stripslashes($data[memo])."<b><font size=1>... MORE</b></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='90%' colspan=0>");
echo("</td>");
echo("</tr>");
echo("</table>");
}else{
echo " <style>
<!--
BODY{cursor:url('2.cur');}
//--!-->
</style>";
echo "<style>
.memos22 {font-family:돋움;font-size:8pt;color:909090;line-height:140%;letter-spacing:-1}
.titles2 {font_family:돋움;font-size:11pt;color:blue;line-height:130%;letter-spacing:-1}
</style>";
echo("<table border='0' cellpadding='0' cellspacing='0' width='96%' height='113'>");
echo("<tr>");
echo("<td width='100%' colspan=0 class=titles2 style=padding-left:8px;><color=gray><img src=http://ele.new21.net/bbs/latest_skin/nzeo/cokke_gallry/images/arrow2.gif> <b></font> <a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='_self'>".$data[subject]."</b></a></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='100%' valign=top class=memos22 style=padding-left:8px; style=text-align:justify;><a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='_self'>".stripslashes($data[memo])."<b><font size=1>... MORE</b></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='90%' colspan=0>");
echo("</td>");
echo("</tr>");
echo("</table>");
}
}
}
아래소스는 위의 사이트에서 적용시킨 소스인데요
공지 밑 중앙의 핫뉴스쪽에 보시면... 첫번째 뉴스는 본문이 4줄로 출력되는데
2번째 뉴스는 3줄로 출력됩니다.
거기다가 두번째뉴스의 제목길이도 첫번째 뉴스보다 길이가 작구요..;;
제대로된것 같은데 이상하게 안되네요
소스 보시고 아시는분은 뭐가 문제인지 좀 꼽아주세요..
부탁드립니다 (__)
좋은하루 되세요
------ 소 스 -------------------------------------------------------------------------------------
<?
// 자신의 계정에 맞게 설정해 주세요.
$디비호스트 = "localhost"; //디비 호스트를 적습니다.
$디비아이디 = "xxxx"; // 디비아이디를 적습니다.
$디비비밀번호 = "xxxx"; // 디비비밀번호를 적습니다.
$디비네임 = " xxxx"; // 디비네임을 적습니다.
$제로보드경로 = "http://ele.new21.net/bbs"; // 제로보드가 설치되어 있는 상대경로를 적습니다. 끝에 /는 넣지 마세요.
$제목길이 = "20"; // 최대 제목 글자수를 적습니다.
// 다시한번 위 설정이 맞는지 확인하세요.
/*
function cut_str($msg,$cut_size)
{
if($cut_size<=0) return $msg;
if(ereg("[re]",$msg)) $cut_size=$cut_size+4;
for($i=0;$i<$cut_size;$i++) if(ord($msg[$i])>127) $han++; else $eng++;
$cut_size=$cut_size+(int)$han*0.6;
$point=1;
for ($i=0;$i<strlen($msg);$i++)
{
if ($point>$cut_size) {return $pointtmp."..."};
if (ord($msg[$i])<=127)
{
$pointtmp.= $msg[$i];
if ($point%$cut_size==0) {return $pointtmp."..."};
}
else
{
if ($point%$cut_size==0) {return $pointtmp."..."};
$pointtmp.=$msg[$i].$msg[++$i];
$point++;
}
$point++;
}
return $pointtmp;
}
*/
function fine9($id, $number)
{
global $디비호스트,$디비아이디,$디비비밀번호,$디비네임,$제로보드경로,$제목길이,$올드아이콘,$뉴아이콘;
$디비접속=mysql_connect($디비호스트,$디비아이디,$디비비밀번호);
mysql_select_db($디비네임,$디비접속);
$result=mysql_query("select * from zetyx_board_$id order by no desc limit $number",$디비접속) or die(mysql_error());
while($data=mysql_fetch_array($result))
{
$name = stripslashes($data[name]);
$data[memo] = stripslashes($data[memo]);
$data[memo]=cut_str2($data[memo],88); // 최대 본문 글자수
$data[subject] = stripslashes($data[subject]);
$data[subject]=cut_str($data[subject],16); // 최대 제목 글자수
$passtime = (mktime()-$data[reg_date])/3600;
if($passtime <48) {
$data[subject] = $data[subject];
}else{
$data[subject] = $data[subject];
}
if (!stripslashes($data[file_name1]))
{
echo " <style>
<!--
BODY{cursor:url('2.cur');}
//--!-->
</style>";
echo "<style>
.memos22 {font-family:돋움;font-size:8pt;color:909090;line-height:140%;letter-spacing:-1}
.titles2 {font_family:돋움;font-size:11pt;color:blue;line-height:130%;letter-spacing:-1}
</style>";
echo("<table border='0' cellpadding='0' cellspacing='0' width='96%' height='113'>");
echo("<tr>");
echo("<td width='100%' colspan=0 class=titles2 style=padding-left:8px;><color=gray><img src=http://ele.new21.net/bbs/latest_skin/nzeo/cokke_gallry/images/arrow2.gif> <b></font> <a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='_self'>".$data[subject]."</b></a></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='100%' valign=top class=memos22 style=padding-left:8px; style=text-align:justify;><a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='+ '+ '_self'>".stripslashes($data[memo])."<b><font size=1>... MORE</b></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='90%' colspan=0>");
echo("</td>");
echo("</tr>");
echo("</table>");
}else{
echo " <style>
<!--
BODY{cursor:url('2.cur');}
//--!-->
</style>";
echo "<style>
.memos22 {font-family:돋움;font-size:8pt;color:909090;line-height:140%;letter-spacing:-1}
.titles2 {font_family:돋움;font-size:11pt;color:blue;line-height:130%;letter-spacing:-1}
</style>";
echo("<table border='0' cellpadding='0' cellspacing='0' width='96%' height='113'>");
echo("<tr>");
echo("<td width='100%' colspan=0 class=titles2 style=padding-left:8px;><color=gray><img src=http://ele.new21.net/bbs/latest_skin/nzeo/cokke_gallry/images/arrow2.gif> <b></font> <a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='_self'>".$data[subject]."</b></a></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='100%' valign=top class=memos22 style=padding-left:8px; style=text-align:justify;><a href='$제로보드경로/zboard.php?id=$id&no=$data[no]' onfocus='this.blur()') target='_self'>".stripslashes($data[memo])."<b><font size=1>... MORE</b></td>");
echo("</tr>");
echo("<tr>");
echo("<td width='90%' colspan=0>");
echo("</td>");
echo("</tr>");
echo("</table>");
}
}
}
사이트 소스보기가 안돼서 확인할수가 없네요.