Sorry to post the code as a screenshot image. Getting error while paste the code here, so I upload the code here
I found this code to send telegram message, but I want to make it to be a function in code igniter’s controller. Can you guys help me?
Sorry for bad English.
Image1:
Image2:
Thank you.
2
Answers
You can create a new action with name ‘actionSendMessage’, then get POST or GET data.
Yor function(pic 1) you can move to different
protected function sendMessage(...$params)
{
// here code...
}
in your controller
You sould simply make a
send_message
method on your controller like this :And change your_controller_name to whatever controller name that you’ve inserted the above
send_message
method :