我在向控制器发送值时遇到问题,rsport23.000webhostapp.com上有一个双重问题 https://rsport23.000webhostapp.com/rsport23.000webhostapp.com/pesanan/tambah_form/2
我应该改变什么?
<p><a href="<?php echo site_url('pesanan/tambah_form/'.$value->id_barang); ?>">PESAN SEKARANG
</a></p>
答案 0 :(得分:0)
尝试使用base_url。永远为我工作。
<p><a href="<?php echo base_url().'pesanan/tambah_form/'.$value->id_barang; ?>">PESAN SEKARANG
</a></p>
答案 1 :(得分:0)
首先在 application / config / config.php
中设置基本网址$config['base_url'] = "https://rsport23.000webhostapp.com/";
之后你可以这样做:
<p>
<a href='<?php echo base_url("pesanan/tambah_form/$value->id_barang"); ?>'>PESAN SEKARANG</a>
</p>