Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //route menampikan view
- $routes->get('/bunga', 'Bunga::index');
- //route untuk tambah data
- $routes->get('/bunga/tambah', 'Bunga::tambah');
- $routes->post('/bunga/add', 'Bunga::add');
- //route untuk fungsi edit
- $routes->get('/bunga/edit/(:num)', 'Bunga::edit/$1');
- $routes->post('/bunga/update', 'Bunga::update');
- //route untuk hapus data
- $routes->get('/bunga/hapus/(:num)', 'Bunga::hapus/$1');
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement