묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
[php]페이지마다 다른 배경색을 불러오게 하는것, 소스좀 봐주세요
2003.10.23 14:03
총 5개의 페이지가 있다고 하면,
각 페이지별로 같은 플래시메뉴가 있고, 이 플래시메뉴의 바탕색이 바뀌는 건데요
이게 어떤 원리로 돌아가는건지요??
왜냐면 원래 5개의 메뉴였다가 6개로 늘어났거든요
우선 플래시에서 메뉴 6개로 수정해놓고 올렸더니,
페이지들에서 플래시메뉴밑의 바탕이 나오지 않더라구요(투명으로 해놔서 하얗게만 나와요)
소스에서도 6개로 늘려야할텐데,,,,
아마도 [01] 이라는 값이 있을 경우 첫번째 페이지로 인식하고 배경색을 깔아 주는건가 본데
거기에 [01] 이라는 값이 주어졌는지 어떻게 알죠??
아시는 분....갈켜주세요
<?
$back_ground = $background;
if ($background == 01)
{
$background = "../img/menu_bg01.gif" ;
$bgcolor = "#339999";
}
elseif ($background == 02)
{
$background = "../img/menu_bg02.gif" ;
$bgcolor = "#067DCD";
}
elseif ($background == 03)
{
$background = "../img/menu_bg03.gif" ;
$bgcolor = "#19936A";
}
elseif ($background == 04)
{
$background = "../img/menu_bg04.gif" ;
$bgcolor = "#998675";
}
elseif ($background == 05)
{
$background = "../img/menu_bg05.gif" ;
$bgcolor = "#256BB2";
}
?>
<style>
<!--
a:link { text-decoration: none; font-size:9pt; color: 666666}
a:visited { text-decoration: none; font-size:9pt; color: 666666}
a:hover { text-decoration: none; font-size:9pt; color: 42619c}
body, table {font-size:9pt; color: 666666}
a, p {line-height: 140%}
.form {border:solid 1;border-color:999999;background-color:f9f9f9;}
-->
</style>
<table border="0" cellpadding="0" cellspacing="0" width="781" height="10">
<tr>
<td width="5" rowspan="3" bgcolor="<?=$bgcolor?>" height="82"> < -- 요기에 bgcolor 값을 넣어주는데, 그게 몇번째페이지인지 어찌 알죠??
<p> </p>
</td>.....................................................................생략.....
각 페이지별로 같은 플래시메뉴가 있고, 이 플래시메뉴의 바탕색이 바뀌는 건데요
이게 어떤 원리로 돌아가는건지요??
왜냐면 원래 5개의 메뉴였다가 6개로 늘어났거든요
우선 플래시에서 메뉴 6개로 수정해놓고 올렸더니,
페이지들에서 플래시메뉴밑의 바탕이 나오지 않더라구요(투명으로 해놔서 하얗게만 나와요)
소스에서도 6개로 늘려야할텐데,,,,
아마도 [01] 이라는 값이 있을 경우 첫번째 페이지로 인식하고 배경색을 깔아 주는건가 본데
거기에 [01] 이라는 값이 주어졌는지 어떻게 알죠??
아시는 분....갈켜주세요
<?
$back_ground = $background;
if ($background == 01)
{
$background = "../img/menu_bg01.gif" ;
$bgcolor = "#339999";
}
elseif ($background == 02)
{
$background = "../img/menu_bg02.gif" ;
$bgcolor = "#067DCD";
}
elseif ($background == 03)
{
$background = "../img/menu_bg03.gif" ;
$bgcolor = "#19936A";
}
elseif ($background == 04)
{
$background = "../img/menu_bg04.gif" ;
$bgcolor = "#998675";
}
elseif ($background == 05)
{
$background = "../img/menu_bg05.gif" ;
$bgcolor = "#256BB2";
}
?>
<style>
<!--
a:link { text-decoration: none; font-size:9pt; color: 666666}
a:visited { text-decoration: none; font-size:9pt; color: 666666}
a:hover { text-decoration: none; font-size:9pt; color: 42619c}
body, table {font-size:9pt; color: 666666}
a, p {line-height: 140%}
.form {border:solid 1;border-color:999999;background-color:f9f9f9;}
-->
</style>
<table border="0" cellpadding="0" cellspacing="0" width="781" height="10">
<tr>
<td width="5" rowspan="3" bgcolor="<?=$bgcolor?>" height="82"> < -- 요기에 bgcolor 값을 넣어주는데, 그게 몇번째페이지인지 어찌 알죠??
<p> </p>
</td>.....................................................................생략.....