Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?
$name = 'scorpion';
echo $name; will display 'scorpion'
?>
$name = "john";
$$name = "ss";
echo $john; // will display 'ss';
$message = "hello";
echo $message ; gives "Hello"
echo $$message; //gives nothing
$hello = "variable variable";
echo $$message; //gives "variable variable"
[/oode]