<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Store</title> </head> <body> <?php include_once "../../../" . "vendor/autoload.php"; use src\bitm\SEIP107992\city\city; $city = new city(); echo $city->store(); ?> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Delete</title> </head> <body> <?php include_once "../../../" . "vendor/autoload.php"; use src\bitm\SEIP107992\city\city; $city = new city(); echo $city->delete(); ?> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Create</title> </head> <body> <?php include_once "../../../" . "vendor/autoload.php"; use src\bitm\SEIP107992\city\city; $city = new city(); echo $city->create(); ?> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Index</title> </head> <body> <?php include_once "../../../" . "vendor/autoload.php"; use src\bitm\SEIP107992\city\city; $city = new city(); echo $city->index(); ?> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Update</title> </head> <body> <?php include_once "../../../" . "vendor/autoload.php"; use src\bitm\SEIP107992\city\city; $city = new city(); echo $city->update(); ?> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Edit</title> </head> <body> <?php include_once "../../../" . "vendor/autoload.php"; use src\bitm\SEIP107992\city\city; $city = new city(); echo $city->edit(); ?> </body> </html>