What is Data Types in PHP?
A data type in PHP tells the system what kind of value a variable is holding. PHP can automatically figure out the type of data when you assign a value to a variable. For example, PHP will know if you’re using a number or a string of text based on the value. Example: In this … Read more