묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
[최근게시물] 고수님들 한번 봐주세요..
2002.04.25 17:15
제가 최근 게시물다운 받아서 해보고잇는데
자꾸 특정 줄에서 에러가 나옵니다
notice.php 안에 내용을 북사했습니다
<?
function cut_string($str,$length){
if(strlen($str) <= $length){
return $str;
}
for($i=0;$i<$length;$i++){
if(ord($str[$i])>127){
$over++;
}
}
return chop(substr($str, 0, $length - $over%2));
}
$connect=mysql_connect("localhost","",""); // MySQL DB에 접근
mysql_select_db(" "); // 사용할 DB를 선택
?>
<center><table border="0" width="100%" height="100">
<tr>
<td width="590"><p>
<?
$result=mysql_query("select * from zetyx_board_yamasi_notice2 order by no desc limit 4"); // 여기서 limit 5 는 나타내는 공지갯수를...
?>
<embed src="http://chem.naweb.cc/cgi-bin/zboard/images/notice.swf" border=0 width=170 height=80><br>
<?
while($data=mysql_fetch_array($result))
{
$no=$data[no];
$data[subject] =cut_string($data[subject], 35); //글자수를 20Byte로 자릅니다.
$subject=stripslashes($data[subject]);
echo "<font size=2 color=gray><img src=http://chem.naweb.cc/cgi-bin/zboard/images/a.gif border=0><a href=$zdir/zboard.php?id=yamasi_notice2&no=$no target=_self>$subject</a><br>
";
}
while($data=mysql_fetch_array($result))
이 부분이 에러라고 자꾸 나옵니다
물론 게시물 5개가 출력되는데 5군대 같은 문장에서 에러나옵니다
고수님 차근히 한번 읽어보시고 알려주세요
혼자 낑낑되다고 써봅니다
mysql_select_db("yamadi_notice"); // 사용할 DB를 선택
여기서 " " 안에는 어떤걸 써 넣어야하나요?
제발 알려주세요
자꾸 특정 줄에서 에러가 나옵니다
notice.php 안에 내용을 북사했습니다
<?
function cut_string($str,$length){
if(strlen($str) <= $length){
return $str;
}
for($i=0;$i<$length;$i++){
if(ord($str[$i])>127){
$over++;
}
}
return chop(substr($str, 0, $length - $over%2));
}
$connect=mysql_connect("localhost","",""); // MySQL DB에 접근
mysql_select_db(" "); // 사용할 DB를 선택
?>
<center><table border="0" width="100%" height="100">
<tr>
<td width="590"><p>
<?
$result=mysql_query("select * from zetyx_board_yamasi_notice2 order by no desc limit 4"); // 여기서 limit 5 는 나타내는 공지갯수를...
?>
<embed src="http://chem.naweb.cc/cgi-bin/zboard/images/notice.swf" border=0 width=170 height=80><br>
<?
while($data=mysql_fetch_array($result))
{
$no=$data[no];
$data[subject] =cut_string($data[subject], 35); //글자수를 20Byte로 자릅니다.
$subject=stripslashes($data[subject]);
echo "<font size=2 color=gray><img src=http://chem.naweb.cc/cgi-bin/zboard/images/a.gif border=0><a href=$zdir/zboard.php?id=yamasi_notice2&no=$no target=_self>$subject</a><br>
";
}
while($data=mysql_fetch_array($result))
이 부분이 에러라고 자꾸 나옵니다
물론 게시물 5개가 출력되는데 5군대 같은 문장에서 에러나옵니다
고수님 차근히 한번 읽어보시고 알려주세요
혼자 낑낑되다고 써봅니다
mysql_select_db("yamadi_notice"); // 사용할 DB를 선택
여기서 " " 안에는 어떤걸 써 넣어야하나요?
제발 알려주세요
말그대로 사용하려는 데이터베이스 이름을 지정합니다. 보통은 자신의 계정 ID와 똑같습니다.
서버 운영자에게 문의해 보십시오.