Need help in refreshing data |
Hi All, I'm new with codeigniter and currently trying to build online shop website.
I'm facing problem with refreshing data after calling 'load->view()'. So i have product list (admin_product_list.php) in my admin panel let say the data is like this: id|name|qty 1|shoes|3 2|shirt|4 3|hat|5 and now i update the first row (shoes), change its qty to 9, submit it, so in database qty has been change to 9. after that, i press a link for back to product list page Code: <a href="<?= site_url()?>admin_controller/admin_anchor_product_list" > << Back to Product Panel</a> PHP Code: public function admin_anchor_product_list() the problem is, data in product list (admin_product_list) is not refreshed : id|name|qty 1|shoes|3 2|shirt|4 3|hat|5 i have to press f5 (refresh) so the page is refreshed and show me new data: id|name|qty 1|shoes|9 2|shirt|4 3|hat|5 How to show new data after calling 'load->view()' without pressing f5 to refresh page? I read some people using redirect, but in this case i dont know if it is possible to use redirect. Please help me to solve this problem. Thank you
load->view must be at the end of your Controller Method.
There is no such thing as refreshing content without F5 in PHP .. If you need HTML update after page is loaded you are talking about Javascript. Best VPS Hosting : Digital Ocean
I m Getting same problem. I have Used redirect('pagename', 'refresh'); but did nt give the thing i needed. I need to refresh page every time i do any thing like edit delete to see the changes. Thanx for your help in advance
My advice is to learn AJAX. If you already now how to use Jquery, it isn't very difficult. AJAX, in combination with a Codeigniter controller, is very powerful!
Thanx for your advice. just give me any sample code so that i get to know what is the solution. Thank You.
|
Welcome Guest, Not a member yet? Register Sign In |