PHP Data Type
PHP supports various data types such as integer, float, string, boolean, array, object, resource, & null that allow you to work with different kinds of values. Data Types Examples Integer $age = 25 Float $price = 12.99 String $name = “John” Boolean $yes = true, $no = false Array $colors= [“red”, “blue”, “black”] Object $car … Read more