경로 수정 작업 중
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
<?
|
||||
<?
|
||||
include_once("./_common.php");
|
||||
|
||||
if (!$is_member)
|
||||
@ -8,22 +8,22 @@ if (!$is_member)
|
||||
$token = md5(uniqid(rand(), true));
|
||||
set_session("ss_token", $token);
|
||||
|
||||
$sql = " select it_name from $g4[yc4_item_table] where it_id='$it_id' ";
|
||||
$sql = " select it_name from {$g4['yc4_item_table']} where it_id='$it_id' ";
|
||||
$it = sql_fetch($sql);
|
||||
if (!$it[it_name])
|
||||
if (!$it['it_name'])
|
||||
alert_close("등록된 상품이 아닙니다.");
|
||||
|
||||
$g4[title] = "$it[it_name] - 추천하기";
|
||||
include_once("$g4[path]/head.sub.php");
|
||||
$g4['title'] = $it['it_name'].' - 추천하기';
|
||||
include_once(G4_PATH.'/head.sub.php');
|
||||
?>
|
||||
|
||||
<table width="600" height="50" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td align="center" valign="middle" bgcolor="#EBEBEB">
|
||||
<table width="590" height="40" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="25" align="center" bgcolor="#FFFFFF" ><img src="<?=$g4[shop_img_path]?>/icon_01.gif" width="5" height="5"></td>
|
||||
<td width="490" align="left" bgcolor="#FFFFFF" ><font color="#666666"><b><?=get_text($g4[title])?></b></font></td>
|
||||
<tr>
|
||||
<td width="25" align="center" bgcolor="#FFFFFF" ><img src="<?=G4_SHOP_URL?>/img/icon_01.gif" width="5" height="5"></td>
|
||||
<td width="490" align="left" bgcolor="#FFFFFF" ><font color="#666666"><b><?=get_text($g4['title'])?></b></font></td>
|
||||
<td width="75" bgcolor="#FFFFFF" ></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
@ -35,21 +35,21 @@ include_once("$g4[path]/head.sub.php");
|
||||
<input type=hidden name=token value='<?=$token?>'>
|
||||
<input type=hidden name=it_id value='<?=$it_id?>'>
|
||||
<table width="600" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<tr>
|
||||
<td height="300" align="center" valign="top">
|
||||
<table width="540" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<tr>
|
||||
<td height="20"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td height="2" bgcolor="#808080"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td width="540" height="2" align="center" valign="top" bgcolor="#FFFFFF">
|
||||
<table width=100% cellpadding=0 cellspacing=0 border=0 height=40 bgcolor='#F6F6F6'>
|
||||
<colgroup width=130>
|
||||
<colgroup width=''>
|
||||
<tr>
|
||||
<tr>
|
||||
<td height="24" rowspan="2"> 추천하실 분 E-mail</td>
|
||||
<td><input type=text id='to_email' name='to_email' required itemname='추천하실 분 E-mail' class=ed style="width:97%;"></td>
|
||||
</tr>
|
||||
@ -76,7 +76,7 @@ include_once("$g4[path]/head.sub.php");
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td height="2" align="center" valign="top" bgcolor="#D5D5D5"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -84,15 +84,15 @@ include_once("$g4[path]/head.sub.php");
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="40" align="center" valign="bottom">
|
||||
<input id=btn_submit type=image src="<?=$g4[shop_img_path]?>/btn_confirm.gif" border=0>
|
||||
<a href="javascript:window.close();"><img src="<?=$g4[shop_img_path]?>/btn_close.gif" border="0"></a>
|
||||
<input id=btn_submit type=image src="<?=G4_SHOP_URL?>/img/btn_confirm.gif" border=0>
|
||||
<a href="javascript:window.close();"><img src="<?=G4_SHOP_URL?>/img/btn_close.gif" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<script language="javascript">
|
||||
function fitemrecommend_check(f)
|
||||
function fitemrecommend_check(f)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -101,5 +101,5 @@ document.getElementById('to_email').focus();
|
||||
</script>
|
||||
|
||||
<?
|
||||
include_once("$g4[path]/tail.sub.php");
|
||||
include_once(G4_PATH.'/tail.sub.php');
|
||||
?>
|
||||
Reference in New Issue
Block a user