PHP Tutorial: Easy Learning With "PHP Tryit"
PHP Tutorial: Easy Learning With "PHP Tryit"
Tutorial
❮ HomeNext ❯
PHP is a server scripting language, and a powerful tool for making dynamic
and interactive Web pages.
Example
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
Try it Yourself »
PHP Exercises
Test Yourself With Exercises
Exercise:
Insert the missing part of the code below to output "Hello World".
"Hello World";
Submit Answer »
PHP Examples
Learn by examples! This tutorial supplements all explanations with clarifying
examples.
PHP References
W3Schools' PHP reference contains different categories of all PHP functions,
keywords and constants, along with examples.