Create an insecure bank application
This commit is contained in:
.gitignoreREADME.mddb-init.sql
webroot
autoload.phpbookings.phpconfig.sample.phpdeposit.phpindex.phplogin.phplogout.phpregister.phpstyle.csstransfer.phpwithdraw.php
lib
Controller
BookingOverviewController.phpCashTransactionController.phpLoginController.phpLogoutController.phpRegisterController.phpRestrictedPageController.phpSql.phpTransaction.phpTransferController.php
Model
View
8
webroot/deposit.php
Normal file
8
webroot/deposit.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
include __DIR__ . '/autoload.php';
|
||||
|
||||
use Controller\CashTransactionController;
|
||||
|
||||
(new CashTransactionController('/deposit.php'))->run()->send();
|
Reference in New Issue
Block a user