Lesson 30 of 30100%
(Progress persistence is disabled until Phase 9)
PHP
Beginner
Mini PHP Application
Learn about Mini PHP Application in PHP.
PHP is a powerful server-side language. In this lesson, we will cover Mini PHP Application.
Real code examples
<?php
// Simple Todo List Array
$todos = ["Buy milk", "Learn PHP", "Build a project"];
// Add a new item
array_push($todos, "Read a book");
// Display the list as HTML
echo "<h2>My Todo List</h2>";
echo "<ul>";
foreach ($todos as $task) {
echo "<li>" . htmlspecialchars($task) . "</li>";
}
echo "</ul>";
?>
Common mistakes
Make sure you include the <?php tag when writing PHP!
Try It Yourself
You can experiment with this in the Playground.