<?php require('system/login.php');  ?>
<?php require_once('../Connections/BE2.php'); ?>
<?php

 
if(isset($_GET['del_id']) && ( $_GET['del_id']>0 )){
mysql_select_db($database_BE2, $BE2);
$delete_SQL = sprintf("delete from youvideo WHERE yid='%s'",$_GET['del_id']);
$Rt2 = mysql_query($delete_SQL, $BE2) or die(mysql_error());
}

//$ykid=array("","旅遊網.景點影片","旅遊網.廣告影片","旅遊網.商業影片","購物網.廣告影片","購物網.商業影片","VIP會員網.廣告影片","VIP會員網.商業影片","VIP會員網.商業模式");
 
$currentPage = $_SERVER["PHP_SELF"];

$maxRows_Rt2 = 12;
$pageNum_Rt2 = 0;
if (isset($_GET['pageNum_Rt2'])) {
  $pageNum_Rt2 = $_GET['pageNum_Rt2'];
}
$startRow_Rt2 = $pageNum_Rt2 * $maxRows_Rt2;

$kid = '旅遊網';
if (isset($_GET['selkid'])) {
  $kid = $_GET['selkid'];
}

mysql_select_db($database_BE2, $BE2);
$query_Rt2 = sprintf("SELECT a.*,concat(b.vkid,b.vdoc) as vvdoc,b.video  FROM youvideo as a,video_master as b where a.ykid=b.vid AND b.vkid like '%s' order by ykid, yindex",'%'.$kid.'%');
$query_limit_Rt2 = sprintf("%s LIMIT %d, %d", $query_Rt2, $startRow_Rt2, $maxRows_Rt2);
$Rt2 = mysql_query($query_limit_Rt2, $BE2) or die(mysql_error());
$row_Rt2 = mysql_fetch_assoc($Rt2);

// echo $query_Rt2;

if (isset($_GET['totalRows_Rt2'])) {
  $totalRows_Rt2 = $_GET['totalRows_Rt2'];
} else {
  $all_Rt2 = mysql_query($query_Rt2);
  $totalRows_Rt2 = mysql_num_rows($all_Rt2);
}
$totalPages_Rt2 = ceil($totalRows_Rt2/$maxRows_Rt2)-1;

$queryString_Rt2 = "";
if (!empty($_SERVER['QUERY_STRING'])) {
  $params = explode("&", $_SERVER['QUERY_STRING']);
  $newParams = array();
  foreach ($params as $param) {
    if (stristr($param, "pageNum_Rt2") == false && 
        stristr($param, "totalRows_Rt2") == false) {
      array_push($newParams, $param);
    }
  }
  if (count($newParams) != 0) {
    $queryString_Rt2 = "&" . htmlentities(implode("&", $newParams));
  }
}
$queryString_Rt2 = sprintf("&totalRows_Rt2=%d%s", $totalRows_Rt2, $queryString_Rt2);

 $vkidarr=array("旅遊網","購物網","VIP會員網");
?>
  
 <script type="text/javascript">
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
</script>

   分類<select name="selkid" id="selkid" onchange="MM_jumpMenu('self',this,0)">
    <option value="<?php printf("%s?act=video_list&selkid=%s", $currentPage, $vkidarr[0]); ?>" <? if($vkidarr[0]==$kid){ ?>selected="selected" <? }?>><?= $vkidarr[0] ;?></option>
    <option value="<?php printf("%s?act=video_list&selkid=%s", $currentPage, $vkidarr[1]); ?>" <? if($vkidarr[1]==$kid){ ?>selected="selected" <? }?>><?= $vkidarr[1] ;?></option>
    <option value="<?php printf("%s?act=video_list&selkid=%s", $currentPage, $vkidarr[2]); ?>" <? if($vkidarr[2]==$kid){ ?>selected="selected" <? }?>><?= $vkidarr[2] ;?></option>
    </select>
     
  <table width="80%" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <th width="4%" height="25" nowrap="nowrap" class="font2">ID</th>
      <th width="4%" nowrap="nowrap" class="font2">類型</th>
      <th width="30%" nowrap="nowrap" class="font2">分類</th>
      <th width="31%" nowrap="nowrap" class="font2">說明</th>
      <th width="5%" nowrap="nowrap" class="font2">連結</th>
      <th width="4%" nowrap="nowrap" class="font2">啟用</th>
      <th width="4%" nowrap="nowrap" class="font2">排序</th>
      <th width="10%" nowrap="nowrap" class="font2">刪除</th>
    </tr>
    <?php 
     do { 
	  $vimage=($row_Rt2['video']=='Y')?"/images/ssvideo.png":'/video_img/logo/'.$row_Rt2['yimage'];

	  
	  ?>
    <tr>
      <td align="center" class="font3"><a href="main.php?act=video_edit&id=<?php echo $row_Rt2['yid']; ?>"><img src="images/edit.png" alt="修改項目名稱" title="修改項目名稱" width="16" height="16" border="0" /></a></td>
      <td align="center"><img name="" src="<?= $vimage ?>" width="45" height="40" alt="<?= $row_Rt2['video']=='Y'?"影音檔":"圖檔"; ?>" /></td>
      <td align="center"><span class="font3">
        <?= $row_Rt2['vvdoc']; ?>
      </span></td>

      <td align="center" valign="middle" class="font3"><?= $row_Rt2['ydoc']; ?></td>
      <td align="center" valign="middle" class="font3"><? if($row_Rt2['ylink']<>''){
		   $urlx=$row_Rt2['video']=='Y'?"https://www.youtube.com/watch?v=":'';   
		  ?><a href="<?= $urlx.$row_Rt2['ylink']; ?>" target="_blank" >GoURL<a><? }?> </td>
      <td align="center" valign="middle" class="font3"><?= $row_Rt2['yflag']; ?></td>
      <td align="center" nowrap="nowrap" class="font3"><?= $row_Rt2['yindex']; ?></td>
      <td align="center" class="font3"><a href="javascript:if(confirm('確實要刪除嗎?'))location='<? echo 'main.php?act=video_list&selkid='.$kid.'&del_id='.$row_Rt2['yid'] ;?>'"><img src="./images/del.png" alt="刪除項目" width="16" height="16" border="0"/></a></td>
    </tr>
    <?php } while ($row_Rt2 = mysql_fetch_assoc($Rt2)); 
 	  ?>
 
    <tr>
      <td colspan="8">
      
      <table width="697" border="0" align="left" cellpadding="0" cellspacing="0">
                <tr>
                  <td width="34%">總筆數：<?php echo $totalRows_Rt2 ?>筆 </td>
                  <td width="66%"><div id="font_s">
                      <p>
                        <?php if ($pageNum_Rt2 > 0) { // Show if not first page ?>
                        <a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, max(0, $pageNum_Rt2 - 1), $queryString_Rt2); ?>"><img src="images/First.gif" alt="上一頁" title="上一頁" width="18" height="13" border="0" /></a>
                        <?php } // Show if not first page ?>
                        第
                        <select name="jumpMenu" id="jumpMenu" onchange="MM_jumpMenu('self',this,0)">
                          <? for($i=0;$i<=$totalPages_Rt2;$i++){?>
                          <option value="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, $i, $queryString_Rt2); ?>" <? if($pageNum_Rt2==$i){ ?>selected="selected" <? }?>><? echo $i+1 ;?></option>
                          <? }?>
                        </select>
                        頁
                        <?php
	    //分頁程式
if($totalPages_Rt2<9){
		 $start=0;
		 $end=$totalPages_Rt2;
		}else{  
	    $start=$pageNum_Rt2-5;
		$end=$pageNum_Rt2+5;
        if ($start<0){
		 $start=0;
		 $end=10; } 
		 else { $end=$start+10 ;}
		 if ($end>$totalPages_Rt2){ 
		   $start = $end-$totalPages_Rt2-5;
		   $end=$totalPages_Rt2;
		   }
		 if ($end-$start>10){ 
		   $start = $end-10;
		   }  
		 }
		   
		for($i=$start;$i<=$end;$i++){
		if($i==$pageNum_Rt2){ echo "[".($i+1)."]";} else {?>
                        <a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, min($totalPages_Rt2, $i), $queryString_Rt2); ?>"> <? echo $i+1 ;?></a>
                        <?	}   }  ?>
                        <?php if ($pageNum_Rt2 < $totalPages_Rt2) { // Show if not last page ?>
                        <a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, min($totalPages_Rt2, $pageNum_Rt2 + 1), $queryString_Rt2); ?>"><img src="images/Next.gif" alt="下一頁" title="下一頁" width="14" height="13" border="0" /></a>
                        <?php } // Show if not last page ?>
                    </p>
                  </div></td>
                </tr>
    </table>
      </td>
    
    </tr>
  </table>

<?php
mysql_free_result($Rt2);
?>
