묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
php 리프레쉬 질문.
2005.06.29 13:59
<?
include aa("./sess.php");
if ($url) {
$link = $url;
} else if ($bo_table) {
$link = "$aa[bbs_path]/board.php?bo_table=$bo_table";
} else {
$link = $aa[path];
}
goto_url ($link)
?>
맨 마지막 구문중에 goto_url 부분에 리프레쉬 설정을 하고 싶은데, 어떻게 코드를 넣어야 될까요?
아래와 같은 형식이나 메타태그로 하려니 모르겠네요. ㅡ.ㅡ
target = "_parent";
function goto_url($url)
{
echo "<meta http-equiv="refresh" content="0;url=$url">";
exit;
}
include aa("./sess.php");
if ($url) {
$link = $url;
} else if ($bo_table) {
$link = "$aa[bbs_path]/board.php?bo_table=$bo_table";
} else {
$link = $aa[path];
}
goto_url ($link)
?>
맨 마지막 구문중에 goto_url 부분에 리프레쉬 설정을 하고 싶은데, 어떻게 코드를 넣어야 될까요?
아래와 같은 형식이나 메타태그로 하려니 모르겠네요. ㅡ.ㅡ
target = "_parent";
function goto_url($url)
{
echo "<meta http-equiv="refresh" content="0;url=$url">";
exit;
}
location.reload();
</script>
...-_-;;