form

Get the Pressed Key using VB.NET

Submitted by donbermoy on
Hi! :) In this article, i will discuss a tutorial that will capture, obtain, or get a key pressed by the user. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. We don't need to design an interface because we have to get only the pressed key by the user. 2. Now put this code for your code module.

Task Management System

Submitted by Yorkiebar on
Introduction: This tutorial will is going to be on how to create a task management system in PHP... it's going to be a long one! Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Database: We are going to be storing all of the created tasks in a database named 'tasksTutorial', and in there a table named 'tasks'. Let's create these now; Go to PHPMyAdmin and enter 'tasksTutorial' followed by pressing the 'create' button.

PHP Security (Form, Password Encryption, Fake Options)

Submitted by Yorkiebar on
Introduction: This tutorial will cover adding security in to your forms with PHP/HTML. Pre-creation: I am going to be using my login form as an example for this page, you can find my tutorial on a login form here; Login Form Tutorial. What security flaws are there? Whenever a user enters data in to your web forms the data gets processed as it is, and as such, needs the creator to add in security checks.

PHP Email Form

Submitted by Yorkiebar on
Introduction: This tutorial will cover creating an email form with PHP/HTMl. Pre-creation: Before you do this, please note that some errors may be caused by your php.ini file located on your server (online or local) during the actual mail sending process (if they do not arrive, for example). Steps of Creation: Step 1: First we are going to create our HTML form for the user to interact with. We

PHP/MySQL/HTML Login Form

Submitted by Yorkiebar on
Introduction: This tutorial will cover creating a login form with PHP/MySQL/HTMl. Pre-creation: First you need to have some user accounts stored in a database, you can check out my profile for a tutorial on creating a register form. Steps of Creation: Step 1: First we need to connect to the database holding the user accounts... mysqli_connect uses the parameters; server, username, password* Step 2

PHP Forms

Submitted by joken on
Using the HTML Form is very important in creating a PHP application, because it serves as a holder of information from a website's visitors and then use the PHP to process that information.

Heres the simple HTML Form.

The code below is a simple HTML Form with a two input boxes for Fullname, E-mail Address and a submit button. When the user click the submit button, the data in the form will be sent to the HTTP POST method to be processed in a PHP file called “processData.php”.