It seems like you are using an ad blocker. To enhance your experience and support our website, please consider:
- Signing in to disable ads on our site.
- Sign up if you don't have an account yet.
-
Or, disable your ad blocker by doing this:
- Click on the ad blocker icon in your browser's toolbar.
- Select "Pause on this site" or a similar option for lancecourse.com.
-
Workouts with Slim 3 - part 5- Action controllers
Hi, welcome to the fifth part of this series on Slim 3 micro framework. In this part we will see how it's possible to use Slim's **Callable Resolver Class(CRC)** to handle our routing.
-
A takeover of PHP Closure and anonymous functions
An anonymous function is a nameless function. A closure is a variable containing an anonymous function: Closures and anonymous are something I found hard to learn in the whole PHP ecosystem...
-
Workouts with Slim 3: create a simple website
This is to show you how you can easily create a full static website with Slim 3.
-
Workouts with Slim 3 - part 4: DIC and Views
Learn how to use Slim 3 Dependency Injection Container(DIC or simply DI)
-
Workouts with Slim 3 - Part 3: Routing
Today I will be taking you through how to use routes and what are their main characteristics.
-
Workouts with Slim 3 - Part 2: Your first application
With this it could just take you some few hours to have a simple website done. In the next part we will be talking more about the routing.
-
Workouts with Slim 3
Slim is a light-weight framework that can be used to develop websites and HTTP APIs of any type, and of any size.
-
Understand and use functions in PHP: Part 2
One of the main advantages of functions is to help us cut the big problem(entire software) into little ones, which can easily be maintained.
-
Make your first CRUD with PHP - Part 4: Read, Update and Delete
Today we're going to see how we can READ, UPDATE, and DELETE data with PHP and MYSQL. And the previous part we saw how we could create new entries
-
Understand and use functions in PHP
Likewise in any programming language functions are fully part of the PHP programming language. It help access core actions of the language and also to extend it easily. And the real power of a programming language comes from its functions.