Postingan lainnya
Controller Tidak terbaca di URL ketika delete
Saya menjalankan fungsi delete di CI berikut kodenya
view tampil :
<body bgcolor="lightgreen">
<a href="<?php echo base_url().'index.php/c_pasien/forminput'?>">Tambah Data</a>
<table>
<tr>
<th>Id Pasien</th>
<th>Nama Pasien</th>
<th>Alamat</th>
<th>Aksi</th>
</tr>
<?php
foreach($dataku as $baris){
?>
<tr>
<td><?php echo $baris['idpasien']?></td>
<td><?php echo $baris['nama']?></td>
<td><?php echo $baris['alamat']?></td>
<td><?php echo "<a href='hapusData/$baris[idpasien]'>Hapus</a>"?></td>
</tr>
<?php
}
?>
</table>
</body>
controllernya :
public function hapusData($data){
$where=array(
'idpasien'=>$data
);
$this->modeldokter->hapusdata('pasien',$where);
redirect('c_pasien');
}
model:
public function hapusdata($table,$data){
return $this->db->delete($table,$data);
}
0
1 Jawaban:
Liat routesnya dulu bener atau engga? yang di passing paramaternya sama ga $data? terus itu di link kutipnya salah mustinya : Hapus"?> semoga membantu
0