0af5ddd52db07946bc461c3106e5c2bebc0efc99.svn-base 942 Bytes
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminOperate.php" ?>
<?
	$obj = new AdminOperate($_REQUEST);
	
	$info = $obj->getInfoOfPopup();
?>
<input type="hidden" name="no" value="<?=$_REQUEST["no"] ?>"/>
<input type="hidden" name="popup_type" value="<?=$_REQUEST["popup_type"] ?>"/>
<table class="datav" style="width:100%;">
	<colgroup>
		<col width="30%" />
		<col width="70%" />
	</colgroup>
	<tr>
		<th style="height:25px;">이미지</th>
		<td class="l">
			<?
				$fileIndex	= "100";
				$fileName	= "img";
				$filePath	= ($info["img_path"] == "" ? "" : $info["img_path"]);
				include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
			?>
		</td>
	</tr>
	<tr style="<?= $_REQUEST["popup_type"] != "1" ? "display:none;" : "" ?>" >
		<th style="height:25px;">링크</th>
		<td class="l">
			<input type="text" name="link_url" style="width:95%;" value="<?=$info["link_url"] ?>" />
		</td>
	</tr>
</table>