Skip to content

Tag: codeigniter

CodeIgniter: 404 Page Not Found on Live Server

I have been developing a small web application with CodeIgniter. After testing it out locally I went to put it on my web server to allow a couple other people test out some features. While navigating to the site I get: – 404 Page Not Found error page When viewing it in my local machine everything loads …

Retrieve JSON POST data in CodeIgniter

I have been trying to retrieve JSON data from my php file.Its giving me a hard time.This is my code Code in my VIEW: Trying to retrieve in my Controller: Outputs Nothing. Here are my headers: My Response which I can See in Developer tools: But in browser, the output is nothing. I am trying to solve it for mor…

how to update form data in codeigniter

I am new in codeigniter. I am using codeigniter for this project. I have not getting how to update form data in the database. I have inserting,showing data in the databse is done. But I cant understand, how to update data in the database. My controller: model: view: Thank you in advance for your help. Answer …

Codeigniter send email with attach file

I am trying to send email on codeigniter with attach file. I always receive email successfully. However , I never receive with attach file. Below is code and highly appreciate for all comments. Answer $this->email->attach() Enables you to send an attachment. Put the file path/name in the first parameter…