Welcome Guest, Not a member yet? Register   Sign In
want to call a function through a button php
#1

echo "<a href='".base_url()."' class='btn btn-sm float-left btn-info'> < - Go Back</a>";

controller name :users
function name : logout
Reply
#2

base_url is for direct file assets like JS or CSS or images, for linking to CodeIgniter controller/method where URL might be rewritten with index.php prefix, or without, you should use site_url helper function, in this case site_url('users/logout')
Reply
#3

(This post was last modified: 09-03-2018, 01:10 PM by Wouter60.)

Please, take some time (maybe several days) to read the CodeIgniter documentation. Without doing that, it will cost you twice the time (or more) to solve all the issues you will encounter, because you're missing so many basics.

Like making a hyperlink (button or not) refer to a controller/function:
PHP Code:
<?php echo anchor('users/logout'' <- Go back ''class="btn btn-sm btn-info float-left"');?>

You must (auto)load the url helper if you want to use the anchor() function.
Reply
#4

erm if you are new don't get in the habit of "<?php echo" "<?=" is so much cleaner instead Smile
You can see things I made with codeigniter here: itart.pro its not overly impressive as I have very little time to learn.
Reply
#5

(09-03-2018, 01:10 PM)Wouter60 Wrote: Please, take some time (maybe several days) to read the CodeIgniter documentation. Without doing that, it will cost you twice the time (or more) to solve all the issues you will encounter, because you're missing so many basics.

Like making a hyperlink (button or not) refer to a controller/function:
PHP Code:
<?php echo anchor('users/logout'' <- Go back ''class="btn btn-sm btn-info float-left"');?>

You must (auto)load the url helper if you want to use the anchor() function.
How to pass parameter to the function using anchor
Reply
#6

(This post was last modified: 09-07-2018, 12:24 AM by Wouter60.)

All the information you need is here:
https://www.codeigniter.com/userguide3/g.../urls.html

Combined with:
https://www.codeigniter.com/userguide3/h...hor#anchor
Reply
#7

(09-07-2018, 12:22 AM)Wouter60 Wrote: All the information you need is here:
https://www.codeigniter.com/userguide3/g.../urls.html

Thanks for your support. I solve that issue.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB