www.gusucode.com > 3007网博士成品网站管理系统 PHP网站源码程序 > 3007/3007/view/admin/view_conmod.php

    <?php
define("ROOTPATH", "../../");
include(ROOTPATH."includes/admin.inc.php");
include("language/".$sLan.".php");
NeedAuth(735);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head >
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link  href="css/style.css" type="text/css" rel="stylesheet">
<title><?php echo $strAdminTitle; ?></title>
<script type="text/javascript" src="../../base/js/base.js"></script>
<script type="text/javascript" src="../../base/js/form.js"></script>
<script type="text/javascript" src="../../base/js/blockui.js"></script>
<script type="text/javascript" src="js/view.js"></script>

</head>

<body >
    
<?php

$id=$_REQUEST["id"];
$pid=$_REQUEST["pid"];

$msql->query("select * from {P}_view_con where  id='$id'");
if($msql->next_record()){
$id=$msql->f('id');
$catid=$msql->f('catid');
$title=$msql->f('title');
$url=$msql->f('url');
$sitetype=$msql->f('sitetype');
$memo=$msql->f('memo');
$body=$msql->f('body');
$xuhao=$msql->f('xuhao');
$cl=$msql->f('cl');
$tj=$msql->f('tj');
$ifnew=$msql->f('ifnew');
$ifred=$msql->f('ifred');
$iffb=$msql->f('iffb');
$src=$msql->f('src');
$type=$msql->f('type');
$author=$msql->f('author');
$source=$msql->f('source');
$secure=$msql->f('secure');
$oldproj=$msql->f('proj');
$oldcatid=$msql->f('catid');
$oldcatpath=$msql->f('catpath');
$tags=$msql->f('tags');

$dtime=date("Y-m-d H:i:s",$msql->f('dtime'));
$uptime=date("Y-m-d H:i:s",$msql->f('uptime'));

$tags=explode(",",$tags);

if($sitetype=="1"){
	$st_check1="checked";
	$st_check2="";
	$ifshow_geshiinfo="none";
	$ifshow_tr1="block";
	$ifshow_tr2="none";
}else{
	$st_check1="";
	$st_check2="checked";
	$ifshow_geshiinfo="block";
	$ifshow_tr1="none";
	$ifshow_tr2="block";
}

}

?> 

<form id="viewForm" name="form" action="" method="post" enctype="multipart/form-data">
<div class="formzone">
<div class="namezone">
<?php echo $strViewModify; ?>
</div>
<div class="tablezone">
<div  id="notice" class="noticediv"></div>
      <table class="viewmodizone" width="100%" cellpadding="2" align="center"  border="0" cellspacing="0">
         
		  <tr> 
            <td height="30" width="100" align="center" ><?php echo $strSetMenu3; ?></td>
            <td height="30" > 
              <select id="selcatid" name="catid" >
                <?php		

					$fsql -> query ("select * from {P}_view_cat order by catpath");
					while ($fsql -> next_record ()) {
						$lpid = $fsql -> f ("pid");
						$lcatid = $fsql -> f ("catid");
						$cat = $fsql -> f ("cat");
						$catpath = $fsql -> f ("catpath");
						$lcatpath = explode (":", $catpath);


						
							for ($i = 0; $i < sizeof ($lcatpath)-2; $i ++) {
								$tsql->query("select catid,cat from {P}_view_cat where catid='$lcatpath[$i]'");
								if($tsql->next_record()){
									$ncatid=$tsql->f('cat');
									$ncat=$tsql->f('cat');
									$ppcat.=$ncat."/";
								}
							}
							
							if($catid==$lcatid){
								echo "<option value='".$lcatid."' selected>".$ppcat.$cat."</option>";
							}else{
								echo "<option value='".$lcatid."'>".$ppcat.$cat."</option>";
							}
							$ppcat="";
						}
						
					
				
?> 
              </select>
            </td>
          </tr>
		   <tr> 
            <td height="30" width="100" align="center" ><?php echo $strViewAddTitle; ?></td>
            <td height="30" > 
              <input type="text" id="title" name="title" style='WIDTH: 499px;' maxlength="200" class="input" value="<?php echo $title; ?>" />
              <font color="#FF0000">*</font> </td>
          </tr>
		  <tr> 
			<td height="30" width="100" align="center" ><?php echo $strViewUrl; ?></td>
			<td height="30"> 
				<input type="radio" name="sitetype" value="1" class="sitetype" <?php echo $st_check1; ?> />引用地址
				<input type="radio" name="sitetype" value="2" class="sitetype" <?php echo $st_check2; ?> />直接地址
			</td>
		</tr>
		  <tr> 
			<td height="30" width="100" align="center" ><?php echo $strViewUrl; ?></td>
			<td height="30" > 
				<input type="text" name="url" value='<?php echo $url; ?>' style='WIDTH:499px;font-size:12px;' maxlength="255" class="input" /> <span style="color:#ff0033;">*</span>
				<span id="viewgeshi" style="display:<?php echo $ifshow_geshiinfo; ?>;">&nbsp;(支持视频格式有:wmv,asf,rm,ram,swf)</span>
			</td>
		  </tr>
		  <tr id="sitetypeinfo1" style="display:<?php echo $ifshow_tr1; ?>;"> 
			<td width="100" align="center" >&nbsp;</td>
			<td style="color:#999999;"> 
				这里,你可以填入视频引用地址,如:<input type="text" name="testurl" value='<embed src="http://player.youku.com/player.php/sid/XMTM1NDIyMzg4/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed>' style="width:500px;border:1px #d2d2d2 solid;font-size:12px;color:#999999;" />
			</td>
		</tr>
	<tr id="sitetypeinfo2" style="display:<?php echo $ifshow_tr2; ?>;"> 
    	<td width="100" align="center" >&nbsp;</td>
      	<td style="color:#999999;"> 
       		这里,你可以填入视频的直接地址,如:http://player.youku.com/player.php/sid/XMTM1NDIyMzg4/v.swf
		</td>
    </tr>
		<tr> 
            <td height="30" width="100" align="center" ><?php echo $strViewAddImg; ?></td>
            <td height="30" > 
              <input type="file" name="jpg" class="input" style='WIDTH: 499px;' />
		    </td>
        </tr>
      </table>
	  <table width="100%" border="0" align="center"  cellpadding="2" cellspacing="0" style="display:none;">
		  <tr> 
            <td height="30" width="100" align="center" ><?php echo $strViewAddImg; ?></td>
            <td height="30" > 
              <input id="uppic" type="file" name="jpg2" class="input" style='WIDTH: 499px;' />
			  <input  type='submit' name='modi'  value='<?php echo $strViewUpload; ?>' class='savebutton' />
		    </td>
          </tr>
      </table>
	<div id="proplist" class="viewmodizone">
	</div>
		 
         <table class="viewmodizone" width="100%"   border="0" align="center"  cellpadding="2" cellspacing="0" >
		 <tr>
            <td width="100" height="30" align="center" ><?php echo $strViewMemo; ?></td>
            <td height="30" ><textarea name="memo" style="WIDTH: 499px;" class="textarea" rows="8"><?php echo $memo; ?></textarea>
            </td>
          </tr>
		  <tr>
    	<td height="30" width="100" align="center" ><?php echo $strViewAddCon; ?></td>
      	<td height="30" > 
        	<input type="hidden" name="body" value="<?php echo $body; ?>" />
			<script type="text/javascript" src="../../kedit/KindEditor.js"></script>
            <script type="text/javascript">
				var editor = new KindEditor("editor");
				editor.hiddenName = "body";
				editor.editorWidth = "680px";
				editor.editorHeight = "300px";
				editor.skinPath = "../../kedit/skins/default/";
				editor.uploadPath = "../../kedit/upload_cgi/upload.php";
				editor.imageAttachPath="view/pics/";
				editor.iconPath = "../../kedit/icons/";
				editor.show();
				function KindSubmit() {
				  editor.data();
				}
            </script>
      </td>
    </tr>
		  <tr>
      <td height="30" align="center" ><?php echo $strViewTag; ?></td>
      <td height="30" >
	  	<input name="tags[]" type="text" class="input" id="tags"  value="<?php echo $tags[0]; ?>" size="10" />
        <input name="tags[]" type="text" class="input" id="tags"  value="<?php echo $tags[1]; ?>" size="10" />
        <input name="tags[]" type="text" class="input" id="tags"  value="<?php echo $tags[2]; ?>" size="10" />
        <input name="tags[]" type="text" class="input" id="tags"  value="<?php echo $tags[3]; ?>" size="10" />
        <input name="tags[]" type="text" class="input" id="tags"  value="<?php echo $tags[4]; ?>" size="10" /></td>
    </tr>
		  <tr> 
            <td height="30" width="100" align="center" ><?php echo $strViewAddProj; ?></td>
            <td height="30" ><?php
			$catstr.="<SCRIPT language=javascript src='js/multicat.js'></SCRIPT>";
			$catstr.="<table cellspacing=0 cellpadding=0><tr><td ><select style='WIDTH: 239px;' multiple size=5 name=spe_funct>";
			$fsql -> query ("select * from {P}_view_proj order by id desc");
			while ($fsql -> next_record ()) {
				$projid = $fsql -> f ("id");
				$project = $fsql -> f ("project");
				$NowPath=fmpath($projid);
				$catstr.="<option value=".$NowPath.">".$project."</option>";
				$ppcat="";
			}

$catstr.="</select></td><td width=20>
<input style='width:20px;height=37px;border:1px outset;' onClick=\"JavaScript:AddItem('spe_funct', 'spe_selec[]')\" type=button value='+' name='Input'>
<input style='width:20px;height=37px;border:1px outset;' onClick=\"JavaScript:DelItem('spe_selec[]')\" type=button value='-' name='Input'>
				</td>
				<td>
				  <select  style='WIDTH: 239px;font-size:12px' multiple size='5' name='spe_selec[]'>";
					$arrs = explode (":",$oldproj);
					for ($k = 0; $k < sizeof ($arrs)-1; $k ++) {
						$projid=$arrs[$k]+0;
						$tsql->query("select project from {P}_view_proj where id='$projid'");
						if($tsql->next_record()){
							$project=$tsql->f('project');
						}
						$catstr.="<option value=".$arrs[$k].">".$project."</option>";
					}
		$catstr.="</select></td><td valign=bottom></td><td width=20 align=center  valign=bottom></td></tr></table>";
		echo $catstr;
?> </td>
          </tr>
          <tr> 
            <td height="30" width="100" align="center" ><?php echo $strFbtime; ?></td>
            <td height="30" ><?php echo $dtime; ?></td>
          </tr>
          <tr> 
            <td height="30" width="100" align="center" ><?php echo $strUptime; ?></td>
            <td height="30" ><?php echo $uptime; ?> </td>
          </tr>
          
          
        
      </table>
	 
</div>  
<div class="adminsubmit">
<input id="adminsubmit" type="submit" name="modi" value="<?php echo $strSave; ?>" class="button" onClick="KindSubmit();" />
<input type="hidden" id="act" name="act" value="viewmodify" />
<input type="hidden" id="nowid" name="id" value="<?php echo $id; ?>" />
<input type="hidden" name="oldcatid" value="<?php echo $oldcatid; ?>" />
<input type="hidden" name="oldcatpath" value="<?php echo $oldcatpath; ?>" />
<input type="hidden" name="pid" value="<?php echo $pid; ?>" />
<input type="hidden" name="page" value="<?php echo $page; ?>" />
<input type="hidden" name="source" value="<?php echo $source; ?>" />
<input type="hidden" name="author"  value="<?php echo $author; ?>" />
</div> 
</div>
</form>
<script>
$().getPropList();
</script>
</body>
</html>