Login With Google CodeIgniter : OAuth API PHP Client

Google’s OAuth 2.0 APIs can be used for open authentication. By this we can access user’s data from server after authorizing user via Google account. In this tutorial, we are going to explain how you can implement Google open authentication to connect with your website using CodeIgniter. You can achieve this login mechanism using Google API php …

Login With Facebook PHP CodeIgniter : OAuth Login

OAuth is simply an open authentication that is used for providing access to the server data after authorizing a user via third party services. In this tutorial, we are going to explain how you can implement Facebook login via open authentication to connect with your website using CodeIgniter. You can achieve this login mechanism using …

Amazon SES Email Client: Send Emails 100X Cheaper with MailGet

We used to spend huge amount of money on email marketing. Till last month, we used to pay nearly $395 every month for email marketing services. We thought this should change and thats when we decided to build MailGet. MailGet – Email Service Provider is an Amazon SES email client that use Amazon SES for email sending. MailGet is …

CodeIgniter – Getting Started With MVC

CodeIgniter is a simple web application development framework for PHP . By its modular approach we can use its inbuilt libraries and helpers. It has a three-tier architecture i.e. Model-View-Controller (MVC) which is easy to use by which the functional process logic, data access, data storage and user interface can be developed. You can also refer our previous tutorial For CodeIgniter installation and configuration. …

Embed Form

The ease with which you can embed your forms anywhere increases the usability of your form many a times.

Set JavaScript Form Action

In this tutorial, we illustrate you an example, which shows how to set JavaScript form action. Sometimes developers want to set form action attribute of a form through programming or through other means. Here, we are using following JavaScript code to set form action on run time. To set form action attribute via JavaScript : document.getElementById(“form_id”).action = “success.php”; …

PHP Login Form with Sessions

Session variables are used to store individual client’s information on web server for later use, as web server does not know which client’s request to be respond because, HTTP address does not maintained state.

This tutorial enables you to create sessions in PHP via Login form and web server respond according to his/her request.

CodeIgniter Input Form Setting

CodeIgniter comes with various pre-defined settings in it’s config.php file, but for form processing developer needs to manually configure some parameters.

This tutorial will demonstrate how to configure manually your CodeIgniter framework for form processing.

Prevent Form Submission Using jQuery

If developer need to use their code on submit button without it performs submission, which is it’s default function.He/She can follow our codes to do so.

Here in this blog post we bring our programming approach to prevent or stop a user from submitting a form.