|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/store/ |
Upload File : |
<?include $_SERVER['DOCUMENT_ROOT']."/include/top.html";?>
<script type="text/javascript">
<!--
function formChange(val,mode){
//내용변경
document.form.idx.value = val;
document.form.mode.value = mode;
document.form.method = "post";
document.form.action = "<?=$php_self?>";
document.form.submit();
}
-->
</script>
<form id="form" name="form" enctype="multipart/form-data">
<input type=hidden name="tab" value="<?=$tab?>">
<input type=hidden name="tabs" value="<?=$tabs?>">
<input type=hidden name="mode" value="<?=$mode?>">
<input type=hidden name="idx">
<?
switch($mode){
case "view":
//if($sessionLevel == 15){
//include "./store_detail2.html";
//}else{
include "store_detail_option_bak.html";
//}
break;
case "cart":
include "store_cart.html";
break;
case "order":
//order2는 옵션 있을때
include "store_order2.html";
break;
case "cart_proc":
include "store_cart_proc.php";
break;
case "order_proc":
include "store_order_proc.php";
break;
case "order_ok":
include "store_order_proc.php";
break;
default:
include "store_list.html";
break;
}
?>
</form>
<?include $_SERVER['DOCUMENT_ROOT']."/include/bottom.html";?>