board_head 관련 질문입니다. 정보
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])에 스크립트 속성을 입힐 수 있는지도 궁금합니다.
댓글 전체
문자열 내에 함수호출이 있을 경우에는 . 으로 연결해 주시면 됩니다.
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>";
}
==================================================================
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>";
}
==================================================================
답변 감사드립니다. ^^
덕분에 초보로서 좋은 지식 배웠습니다. (__)
덕분에 초보로서 좋은 지식 배웠습니다. (__)