11 lines
222 B
PHP
11 lines
222 B
PHP
<?php
|
|
|
|
require_once "../Model/TodoList.php";
|
|
require_once "../BusinessLogic/ShowTodoList.php";
|
|
|
|
$todoList[1] = "Belajar PHP Dasar";
|
|
$todoList[2] = "Belajar PHP OOP";
|
|
$todoList[3] = "Belajar PHP Database";
|
|
|
|
showTodoList();
|