board_head 관련 질문입니다.
<?
// 게시판 관리의 상단 파일 경로
if ($board[bo_include_head])
@include ($board[bo_include_head]);
// 게시판 관리의 상단 이미지 경로
if ($board[bo_image_head])
echo "<img src='$g4[path]/data/file/$bo_table/$board[bo_image_head]' border='0'>";
// 게시판 관리의 상단 내용
if ($board[bo_content_head])
echo stripslashes($board[bo_content_head]);
?>
board_head.php의 일반 구문입니다.
위에서 게시판 관리의 상단 내용을 출력하기에 앞서,
bo_content_head에 <font> 속성을 주려고 하는데, 방법을 모르겠네요.
echo "<font color='~~'>stripslashes($board[bo_content_head])</font>";
위와 같은 형태로 설정하면 stripslashes 문구가 함께 출력되네요.
어떻게 설정해야 할까요?
+
또한 stripslashes($board[bo_content_head])에 스크립트 속성을 입힐 수 있는지도 궁금합니다.
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 2개
if ($board[bo_content_head])
echo "<font color='red'>".stripslashes($board[bo_content_head])."</font>";
========== javascript 사용할 경우 ==================================
if ($board[bo_content_head]) {
echo "<script type='text/javascript'>";
echo "alert('" . stripslashes($board[bo_content_head])."');";
echo "</script>";
}
==================================================================
덕분에 초보로서 좋은 지식 배웠습니다. (__)