how to declare var using 2 diff variable in ph code example
Example 1: php variable
$name = "Josh"; //$varname = value
Example 2: PHP Variables
<?php
$txt = "Hello world!";
$x = 5;
$y = 10.5;
?>
$name = "Josh"; //$varname = value
<?php
$txt = "Hello world!";
$x = 5;
$y = 10.5;
?>