How to search record in mysql codeigniter
In this tutorial we are going to explain you how to perform CodeIgniter select query to fetch data from database using ID or name with form get method. In this demo we are using input box and student id and…
In this tutorial we are going to explain you how to perform CodeIgniter select query to fetch data from database using ID or name with form get method. In this demo we are using input box and student id and…
I’ll share to you very basic tutorial with codeignter,here is inserting data toyou database.Oke make it simple,first of all you must create a table in your database obviously after create form and save create array and save data in database…
I’ll share to you very basic tutorial with codeignter,here is inserting data toyou database.Oke make it simple,first of all you must create a table in your database obviously after create form and save create array and save data in database…
CodeIgniter’s File Uploading Class allows uploading files on the server. You can upload single file or image easily using core php. But sometimes multiple file uploading feature needs to be provided the in the web application. This article will help…
In this topics, we will discus about how to create PDF using DOMPDF with Codeigniter Framework. We are going to use a third-party library called Dompdf that enables us to create PDFs and save them to the server or directly…
Today we’re going to be learning how to connect and then query a database in CodeIgniter. Knowing how to manipulate and read databases is an essential tool for creating any dynamic web application. Let’s get started. Code (application) $db[‘default’] =…
A simple program that I wrote before in PHP(Codeigniter) and MySQL to search a record from the database. The code is very easy to understand and use in your projects related to PHP(Codeigniter) and MySQL HTML Code <div class=”row”> <div…
In this tutorial, I will describe how to send emails in a CodeIgniter application using SMTP. I will use the well known and maintained email sending class. Code $this->load->library(’email’); $config[‘protocol’] = ‘sendmail’; $config[‘mailpath’] = ‘/usr/sbin/sendmail’; $config[‘charset’] = ‘iso-8859-1’; $config[‘wordwrap’] =…
.htaccess file is a configuration file used to override the main server configuration. .htaccess file placed in a directory and the configuration is applied to that particular directory and all the subdirectories. The most usage of .htaccess file is Rewriting…
CAPTCHA is a simple test to determine if a user is a computer or a human. It is used to prevent spam abuse on the websites. So if you use CAPTCHA on your web site forms, this can help in…