More data validation in PHP
This tutorial shows some more data validation methods following on from the form data validation tutorial. In this tutorial, you will be shown how to implement the following data validation …
This tutorial shows some more data validation methods following on from the form data validation tutorial. In this tutorial, you will be shown how to implement the following data validation …
This tutorial explains how to use the htmlentities and strip_tags functions in PHP to ignore or strip HTML tags in strings. You may want to do this if you are …
Select lists, which are created in HTML code, can be useful when a user needs to select one or more items from a list of different items. This tutorial explains …
This tutorial explains how to handle submitted form data in one file with PHP and also how to work with the request method in PHP. The request method can be checked …
This tutorial explains how to create forms which include a range of form elements include text (textbox), textarea, and password. text – this element is used to get a short …
This tutorial explains how to create a form which contains check boxes and how to handle the form data using PHP. Check boxes are used when you want the user …
This tutorial explains how to validate data that has been submitted by a user in a form. We will look at the following types of data validation: Check that a …
In this tutorial you will finally get to work with real user input through the use of forms and PHP code. This tutorial will show you how to create a …
Forms allow users to submit data in many different ways. A range of form input elements are available including text boxes, checkboxes, radio buttons, and submit buttons. This video tutorial …
In this tutorial, you will learn how to use JavaScript to validate form data. Form validation ensures that the correct form data has been provided by the user. For example, …
This video tutorial explains how to create a form which can accept a username and password, and then submit the form data. The video only explains how to use the text …