Title1

Title2

Title3

18-9 op_delete()函數

###############################################################################
#  刪除資料
###############################################################################
function op_delete($sn="")
{
  global $mysqli,$TBL;
  if(!$sn)redirect_header("index.php",3000,"刪除記錄錯誤!!");

  #刪除舊檔(資料表、實體檔案)
  $col_name="prod";
  delete_file_name($sn,$col_name);

  #刪除 show_kind
  $sql = "delete
          from `{$TBL['name']}`
          where `sn`='{$sn}'";//die($sql);
  $mysqli->query($sql) or die(printf("Error: %s <br>".$sql, $mysqli->sqlstate));

  return;
}