Mostlikers Programming Blog, Related codeigniter jquery, php, mysql and more things

23 March, 2016

Providing Security to the website forms

Most of the website forms face security issues. Generally the user side faces the most of the issues. Hackers can easily crack through user side validation. This post will give you a clear picture of how to prevent website from server side and user side validation security issues.

Providing Security to the website forms

09 March, 2016

Email with customized HTML template using Codeigniter

It's a new topic related to Codeigniter. In this post, I will explain about, how to send an email with a customized HTML template using Codeigniter. You have to set some configuration to send an email in codeigniter library function.

Email with customized HTML template using Codeigniter

28 January, 2016

Read Your Gmails Using PHP and IMAP

In this post we will be seeing, how to access gmail inbox via PHP code? We will be using PHP 5 IMAP  function to retrieve the gmail emails. IMAP function is used to open streams to POP3 and NNTP servers.

Retrive Gmails using php and IMAP


23 January, 2016

Git Tutorial - Git Configurations #1

There are three levels that the Git stores the configurations. System Level, User Level and Project Level Configurations.

1. System Level Configurations:

This is the largest level of configuration this configuration will apply to the every user of the computer. These are default configurations and can be overwritten.

Git Tutorial - Git Configurations

18 January, 2016

Git Tutorial - Installation

Installing Git is simple and easy. Download the git package from the website http://git-scm.com and follow the steps mentioned below.

Git Tutorial Installation

13 January, 2016

Git Tutorial - Introduction

It is a software that keeps a track of files and directories that we make, especially the text changes and allows us to compare between the changes (versions) that we created.

GIT is referred as a version control system (VCS). The primary purpose of the VCS is to manage the source code (source code management (SCM)).

VCS's are called as source code management tools.

GIT Tutorial - Introduction