phpCoreX
phpCoreX with MVC and Admin Panel
phpCoreXは、php-mysql ユーザー管理システム用の php ライブラリです。これは、ユーザー登録、ログインが必要なプロジェクトの作成に使用できます。マルチレベル権限など
マルチレベルのユーザー権限を備えたユーザー管理システムの基本骨格が得られました。
phpCoreX wiki へようこそ!
routes/web_route.php
Route:: set ( ' user-list ' , function () {
UserController:: userList ();
});
public static function userList ()
{
$ userData = DB :: operation ()-> query ( " SELECT * FROM users " )-> results ();
self :: createView ( ' UserListView ' , $ userData );
}
corex/View/UserListView.php
内 <?php print_r ( self :: $ params ); ?>