Understanding PHP basics

From Leechfinger
Revision as of 13:54, 25 May 2024 by Qais (talk | contribs)
Jump to navigationJump to search

Let's write our first PHP code.

<?php
 echo "Hello from PHP";
?>

Storing values in a variable

<?php
$myName = "Kooka";
$friendsName = "Loopa";
echo "<p>I am $myName and I have a friend called $friendsName.</p>";
?>