Files
test1/BusinessLogic/ShowTodoList.php
2023-04-12 11:55:10 +07:00

16 lines
221 B
PHP

<?php
/**
* Menampilkan todo di list
*/
function showTodoList()
{
global $todoList;
echo "TODOLIST" . PHP_EOL;
foreach ($todoList as $number => $value) {
echo "$number. $value" . PHP_EOL;
}
}