在codeignitor中启用发布方法{如果我尝试使用GET方法的goto操作页面但未重定向}

时间:2019-07-11 02:19:45

标签: codeigniter

我正在尝试通过POST方法在下一页上发送一些值,我尝试在空的地方工作,但是当我在codeignitor系统中尝试在同一页上重定向时如何解决

第1页

<form action="http://localhost/v/ol" method="GET">

<input type="text" name="file" value="">

<input type="submit">
<br>

第2页

 <?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>

 <div class="container m-b-30">
    <div class="row">
            <div class="col-sm-12 page-breadcrumb">
                <ol class="breadcrumb">
                    <li class="breadcrumb-item">
                        <a href="<?php echo lang_base_url(); ?>"><?php                      echo trans("breadcrumb_home"); ?></a>
                    </li>

                    <li class="breadcrumb-item active"><?php echo  html_escape($page->title); ?></li>
                </ol><h1 class="page-title"><?php echo html_escape($page->title); ?></h1>
            </div>
            <?php 
         if(isset($_GET['file']))
        {
        $file=$_GET['file'];
            $url = 'https://openload.co/f/';
            header( "refresh:10;url=$url$file" );}
            ?>
       <script type="text/javascript">

    (function () {
   var timeLeft = 10,
    cinterval;

   var timeDec = function (){
    timeLeft--;
    document.getElementById('countdown').innerHTML = timeLeft;
    if(timeLeft === 0){
        clearInterval(cinterval);
    }
};

cinterval = setInterval(timeDec, 1000);
})();

</script>

 <div align="center"><h1>You will Redirected in <span id="countdown">10</span> Seconds</h1></div></div></div>

当我尝试发布方法时,它不执行操作页面,但在get方法中,其goto操作页面但未重定向到目标链接$ url $ file

1 个答案:

答案 0 :(得分:1)

在表单标签中添加enctype ='multipart / form-data'。