Variables in PHP are used to store data values. PHP automatically determines the type of variable based on its value (dynamic typing).
To declare a variable, use the $
sign followed by the variable name:
<?php
$name = "John"; // String
$age = 30; // Integer
$height = 5.9; // Float
?>
Some common data types in PHP include:
Declare a variable for your favorite color and echo it to the page.
Answers: The $
symbol; String, Integer, Float, Boolean, Array, Object.