How to Create a Contact Form In CodeIgniter
In this tutorial, we will show, how to create a simple contact form using CodeIgniter framework. It includes step by step process to construct PHP applications.
In this tutorial, we will show, how to create a simple contact form using CodeIgniter framework. It includes step by step process to construct PHP applications.
AJAX (Asynchronous JavaScript and XML) is the art of exchanging data with a server, and updating parts of a web page – without reloading the whole page. Therefore, Ajax makes web page quick responsive.
We have already explained about form validation using different technologies. Now, the same can be done by using Ajax, In this blog post we will tell you how it can be done.
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.
In this tutorial, we have created a multistep form and applied Javscript functions over it.
PHP is a server side scripting language and it also allows redirecting to another page, this blog post explains you how it can be done using PHP after form submission.
We have created an HTML form with four fields and a submit button, user have to fill all fields and click on submit button, as he clicks the button PHP scripts will executes.
This blog Post concerns about File uploading functionality using PHP in forms. Just click on live demo or follow our codes to use it.
This blog post concerns you about “Email Verification” and explains you how it is done using php. The code will validate the user email id if it is an registered user.
Checkbox Plays a key role in forms. Sometimes there is a need to select or Check/Uncheck all options (ex. email inbox) then, how it happens and what technique is used to do this?
This blog post answers the above question.
This blog post explains and provide you different CSS Styles for checkbox and radio button .
Here, are the following types, you just copy our code or download it to implement in your forms.
Our earlier blog post already explained about form submission without page refresh, but it was done by using ajax, PHP and jQuery.
Now you will learn same functionality using ajax, PHP and Javascript through this blog post . Just follow our post or download it to use.
In this blog post we provide you 5 different form styles, created in HTML/CSS3. Just follow our codes or download it to use in your form styles.
AJAX (Asynchronous JavaScript and XML) is the art of exchanging data with a server, and updating parts of a web page – without reloading the whole page.
we have already post a blog which explains about submitting form without page refresh, but it was done by using PHP and jQuery. Now we will show how you can do the same with ajax and PHP.
Now a days multi-step form become more popular than regular forms, as it is more convenient and provides step by step procedure to follow by user. therefore, this blog post brings creation of multi step form using jquery and CSS3 .
In this tutorial we have illustrated how to delete data from database in php using MySql delete query,that enables to remove your existing data from database.
In this blog post we will show how you can update stored information in database using PHP. It requires a database in MySQL and PHP code with update query.
In this blog post , we will tell you to style your HTML drop down field.
We have created simple form with id=”myform” and add drop down field into it.
You can disable autocomplete in form input fields using jQuery with this one line .attr(‘autocomplete’, ‘off’). That will prevent to show previous form entries.
jQuery provides a validation plugin or library to validate your form, all you have to do is just import it in your script and use it in a simple way. But, here we will show you a simple programming approach to validate your form using jQuery without importing jQuery validation library or plugin. Below example …