Blog Posts

String Length in PHP

How to find character length of string in PHP.

JS Data Types

Numbers Data Types in Js, String Data Types in Js, Boolean Data Types in Js, Null Data Types in Js,

Variable Function in PHP

A variable is a symbol on whose value a function, polynomial, etc., depends. For example, the variables in the function are and. . A function having a single variable is said to be univariate, one having two variables is said to be bivariate, and one having two or more variables is said to be multivariate.

PHP goto Statement

PHP में goto statement का उपयोग किसी प्रोग्राम के दूसरे सेक्शन पर जाने के लिए किया जाता है। इसे कभी-कभी बिना शर्त छलांग वाले बयान के रूप में जाना जाता है। goto statement का उपयोग किसी फ़ंक्शन के भीतर कहीं से भी कहीं भी जाने के लिए किया जा सकता है।

PHP Data Types

String Integer Float (floating point numbers - also called double) Boolean Array Object NULL Resource

Form Attributes in HTML

How to make in html form. The information about the important tags used in creating the HTML form is given below.

PHP - The if Statement

In PHP we have the following conditional statements: if statement - executes some code if one condition is true. if...else statement - executes some code if a condition is true and another code if that condition is false. if...elseif...else statement - executes different codes for more than two conditions.