PHP Reference: Variables
Quick reference for Variables.
PHP Reference — Variables
Quick summary of Variables with syntax and example.
Syntax
<?php ... ?>
Example
<?php
$name = "DrSchool";
echo "Hello " . $name;
?>
Quick reference for Variables.
Quick summary of Variables with syntax and example.
<?php ... ?>
<?php
$name = "DrSchool";
echo "Hello " . $name;
?>