CodeIgniter From Scratch: Day 1

Leave a Comment
CodeIgniter From Scratch: Day 1 Over the course of about 10 videos, Jeffrey Way will teach you exactly how to use this framework. Ultimately, we'll work our way up to building a custom CMS. Without further ado, here's day one! ...

How to install laravel on windows xammp server.

Leave a Comment
Watch this video to learn how to install laravel on windows xammp server ...

How to do form validation in codeigniter

Leave a Comment
Form validation in CodeIgniter using its form validation library Before explaining CodeIgniter's approach to data validation, let's describe the ideal scenario: A form is displayed.  You fill it in and submit it.  If you submitted something invalid, or perhaps missed a required item, the form is redisplayed containing your data along with an error message describing the problem.  This process continues until you have...

How to set cookie in codeigniter

Leave a Comment
Cookies in codeigniter To use cookies in codeigniter we have to use its helper class.The Cookie Helper file contains functions that assist in working with cookies. Below is the example to set cookies in get its values.So we create controller cookies_demo.php.Add the some method like the below example: <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class cookies_demo extends CI_Controller { function __construct() { parent::__construct(); $this->load->helper('cookie'); } //...

CodeIgniter From Scratch : Select records from database

Leave a Comment
Select records from database for CodeIgniter CRUD In previous tutorials we learn how to set up out project directory for codeigniter crud.In this we learn how to fetch data from database using MVC of codegniter. Let's go to our controller i.e. data.php and add some stuff to make CRUD work. Add the some method like the below example: <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class data extends...

CodeIgniter From Scratch : Directory Setup for CRUD

Leave a Comment
Directory Setup And Database Setup For CodeIgniter CRUD. Step 1: Download Codeigniter and check this Link to set up codeigniter After Proper Setup Your Page get look like this as seen below Step 2: Now we are ready to configure our database for our codeigniter project.To do that goto your codeigniter /appication/config/database.php.Open that file in your editor it will look like this. <?php if ( ! defined('BASEPATH')) exit('No...

How to send mail using CodeIgniter and smtp

Leave a Comment
Send mail using codeIgniter and smtp Sending email is not only simple, but you can configure it on the fly or set your preferences in a config file.In the past, I have used the email helper extensively in combination with sendmail, however for a new project I was required to route e-mail through a third-party SMTP server, in this case Gmail. I used the following code: function sendMail() { $config = Array( 'protocol' => 'smtp', 'smtp_host' => 'ssl://smtp.googlemail.com', 'smtp_port' => 465, ...

How to send mail using CodeIgniter.

Leave a Comment
Send E-mail using codeIgniter. Sending email is not only simple, but you can configure it on the fly or set your preferences in a config file. CodeIgniter's Email Class supports the following features: Multiple Protocols:  Mail, Sendmail, and SMTP Multiple recipients  CC and BCCs  HTML or Plaintext email  Attachments  Word wrapping  Priorities  BCC Batch Mode, enabling large email lists to be broken...

CodeIgniter From Scratch : CRUD

Leave a Comment
Basic CRUD With Codeigniter If you are totally new to the codeigniter experience and you can't still understand the way that you can create a CRUD, this codeigniter CRUD tutorial is just for you.We'll review how to easily create, read, update, and delete records using CI's active-records class. So, We will do it this process in 4 stage Stage 1 : In this stage we will setup a directory and database. Stage 2 : In this stage we will Select all database from the database and show into the view. Stage 3 : In this stage we...

How to Setup CodeIgniter on local xampp server with screenshots

Leave a Comment
Codelgniter install Step By Step Tutorial for beginners: What is CodeIgniter? CodeIgniter is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. If you're a developer who lives in the real world of shared hosting accounts and clients with deadlines, and if you're tired of ponderously large and thoroughly undocumented frameworks, then...

How To Create Captcha With Codeigniter

Leave a Comment
In this tutorial I will show you how to use the the codeigniter captcha helper. The CAPTCHA Helper file contains functions that assist in creating CAPTCHA images. Frist we have load library of captcha in controller. $this->load->helper('captcha'); Now we will create controller for the CAPTCHA so let's start.Before we create controller we will create captcha folder in root directory of project. <?php /** * */ class Captcha...

Pagination With Codeigniter

Leave a Comment
Hello Guy's, Pagination is particularly useful when you are coding an application that interfaces with a database. A large dataset might have hundreds of possible results for one query, and pagination creates a much nicer user experience. In this tutorial, I’ll use CodeIgniter’s pagination library to show you how you can create a paginated list of results from a MySQL database. Along the way, you’ll also see how to fix a problem...

How to increase website traffics or improve alexa rank

Leave a Comment
Somedays before i read awesome blog which is about how to increase website traffic and improve alexa rank and i want say thank you to this author who give me such a great information about website traffic and improve alexa rank so i just thought share this blog with you here it is Alexa Boostup Nowadays webmasters are keeping their eye on Alexa ranks of their blog this may be due to the delay in the page rank update from google...

How To Remove Index.php From CodeIgniter in Windows Xampp

Leave a Comment
Remove Index.php From CodeIgniter Follow This Step 1. First check mod_rewrite is enabled or not 2. To check this create php file type in that <?php phpinfo(); ?> 3. Run into broswer 4. Search for the mod_rewrite if you will find that in loaded module then its enabled else you have to enabled this mod_rewrite check this tutorials for enable mod_rewrite 5. After that create .htaccess file in your root folder...

How to delete facebook page

Leave a Comment
You can watch direct video here is video ...

How To increase Facebook likes,YouTube Video Likes All social promotion

1 comment
How to increase facebook likes youtube likes ????? Hello guys Today we will discuss about how to increase facebook like youtube likes this tutorial will teach you how to do that You have to follow some steps Here is the secret Click on this link FREE Social Promotion Login on website fill all the information to create account After that click on this button You can redirect another page fill that page information From...

How To Install Ubuntu In Windows

Leave a Comment
code{ background-color: #333333 !important; border: 0 none; border-radius: 5px; color: #E9E4E5; overflow-x: auto; } h1{ color: #2d2d2d; font-family: proxima-nova; font-size: 27px; letter-spacing: 0.2px; margin: 14px 0px 10px; padding: 0px; width: 690px; } span{ font-family: proxima-nova; font-size: 14px; line-height: 30px; } In this tutorial you can leran how to intall ubuntu in windows machine...

How To Install Laravel on Ubuntu

Leave a Comment
code{ background-color: #333333 !important; border: 0 none; border-radius: 5px; color: #E9E4E5; overflow-x: auto; } h1{ color: #2d2d2d; font-family: proxima-nova; font-size: 27px; letter-spacing: 0.2px; margin: 14px 0px 10px; padding: 0px; width: 690px; } span{ font-family: proxima-nova; font-size: 14px; line-height: 30px; } Introduction Laravel is a framework for websites in the PHP programming language. It allows developers to rapidly develop a website by abstracting common tasks used in most web projects,...
Powered by Blogger.