PHP

23
1384 reads

February 7, 2013

Retaining Values in Fields


In Form Validation if user enter some wrong inputs or some error occur we don't want that user enters all the form data again so we can use this code to get your data back
22
1372 reads

February 7, 2013

Putting Specific Data Only


Sometimes it is required to enter specific data only like for age we want only numbers and in name there is only characters. So for that we use preg_match function of PHP.
32
1297 reads

February 7, 2013

Required and Optional Fields FORMS


When Some fields are optional and some fields are required in the form to be filled then we can check the data entered in the form using this code.
26
1325 reads

February 7, 2013

Forms Security Using Function


Making forms secure so that scripts or HTML tags may not be work if entered by the user
31
499 reads

February 7, 2013

FORMS Using Get


Using GET FORMS to display the information sent in the URL Box of the browser.
37
1297 reads

February 6, 2013

FORMS RadioButton CheckBox


Using radiobuttons and check boxes in forms PHP
168
1067 reads

February 6, 2013

FORMS POST Textarea


Displaying Form Data from textarea
37
1603 reads

February 6, 2013

24
1437 reads

February 6, 2013

12
1510 reads

February 5, 2013

ForEach Loop


Using Foreach loop in php for Operating with arrays.