Aug 6, 2024
localhost
.htdocs
directory.<p>This is a paragraph.</p>
<?php echo 'This is also a paragraph.'; ?>
$
) to declare a variable.$name = 'Danny Crossing';
echo
to output variable values.$fullName
.$string = 'Daniel';
$number = 42;
$floatNum = 2.5678;
$isTrue = true;
1
is treated as true, 0
as false.array()
function:
$names = array('Daniel', 'Bella', 'Theta');
$names = ['Daniel', 'Bella', 'Theta'];
$car = new Car();
''
(empty string)0
0.0
false
[]
null
$name = 'Danny Crossing';
<p>Hi, my name is <?php echo $name; ?> and I'm learning PHP.</p>