Understanding PHP basics: Difference between revisions

From Leechfinger
Jump to navigationJump to search
Qais (talk | contribs)
Created page with " Category:PHP"
 
Qais (talk | contribs)
No edit summary
Line 1: Line 1:
 
Let's write our first PHP code.
<syntaxhighlight lang="bash" line>
<?php
echo "Hello from PHP";
?>
</syntaxhighlight>
[[Category:PHP]]
[[Category:PHP]]

Revision as of 13:47, 25 May 2024

Let's write our first PHP code.

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