묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
name.php?mode=324 <<<<<<<<이런거 질문하려고하는데요^^;
2005.11.10 13:50
/////////////////////////////////////////////////////////////////////////////////////////////////
<?
include "php/head.php";
?>
<a href="dj.php">건학정신</a>
<a href="dj.php?mode=edu">교육목표</a>
<br><iframe src="
<?if(!strcmp($mode,edu)){?>
htm/edu.htm
<?}else{?>
htm/kunhak.htm
<? } ?>
" frameborder="no" marginwidth="0" marginheight="0" width="630" height="440" align="center" scrolling="auto"></iframe>
</td>
</tr>
</table>
<?
include "php/foot.php";
?>
/////////////////////////////////////////////////////////////////////////////////////////////////
중간에
<?if(!strcmp($mode,edu)){?>
htm/edu.htm
<?}else{?>
htm/kunhak.htm
<? } ?>
이걸넣었어여~
링크는
dj.php?mode=edu 이렇게걸고..클릭했는데
iframe 안에는 계속 htm/kunhank.htm 이것만불러들여져여......;;;
어떻게 해결해야되요 ㅠㅠ?
<?
include "php/head.php";
?>
<a href="dj.php">건학정신</a>
<a href="dj.php?mode=edu">교육목표</a>
<br><iframe src="
<?if(!strcmp($mode,edu)){?>
htm/edu.htm
<?}else{?>
htm/kunhak.htm
<? } ?>
" frameborder="no" marginwidth="0" marginheight="0" width="630" height="440" align="center" scrolling="auto"></iframe>
</td>
</tr>
</table>
<?
include "php/foot.php";
?>
/////////////////////////////////////////////////////////////////////////////////////////////////
중간에
<?if(!strcmp($mode,edu)){?>
htm/edu.htm
<?}else{?>
htm/kunhak.htm
<? } ?>
이걸넣었어여~
링크는
dj.php?mode=edu 이렇게걸고..클릭했는데
iframe 안에는 계속 htm/kunhank.htm 이것만불러들여져여......;;;
어떻게 해결해야되요 ㅠㅠ?
댓글 4
-
Amazing-Kis
2005.11.10 13:54
참 이파일명이 dj.php 이에요~ 자기자 자기클릭한거져-ㅁ-;;;;;흠; -
ssukai
2005.11.10 19:43
int strcmp ( string str1, string str2)
str1이 str2보다 작다면 < 0을 반환하고; str1이 str2보다 크다면 > 0을 반환합니다. 동일하면 0을 반환합니다.
이 비교가 대소문자를 구별하는 점에 주의하십시오. -
워니
2005.11.13 14:45
mode라는 GET 문자열을 참조할 때는
$_GET['mode']라고 참조하시는게 좋습니다;;
이렇게 해보세요.
htm/<?php if(!stricmp($_GET['mode'],'edu')){?>edu.htm<?php }else{?>kunhak.htm<?php }?> -
사륜안카카시
2005.12.16 22:40
$PHP_SELF를 이용하시면, 현재 문서 즉 dj.php란 값은 자동으로 저장해주기때문에,
보통 이변수(상수겠죠;) 를 사용하십니다. :D