Skip to content
Advertisement

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 up and runs

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 more

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 You are only passing

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. Note: Use a file path, not a URL. For multiple attachments

Replace number and email with XXXX in a sentence using jQuery

I’d like to replace the numbers and email from the sentences. Example $message = “Hi this is john, my personal no is 1213456789 and my email address is john@gmail.com”. Output: Hi this is john, my personal no is 1213456789 and my email address is john@gmail.com I want the Output to be like this: Output: Hi this is john, my personal

Advertisement