Running NativePHP on Windows: An Unofficial Developer’s Hack

NativePHP is an innovative approach to building native applications, leveraging the familiar tools of PHP. It revolutionizes the development process by letting you create powerful, native applications using the PHP language and environment you’re already comfortable with. No need for learning new languages or frameworks; with NativePHP, you can directly use your existing PHP skills … Read more

DI (Dependency Injection) in PHP

There are a few similar terms in the programming world like HTML injection, SQL injection, etc. What does DI mean? Dependency Injection is a design pattern that helps avoid hard-coded dependencies for classes. Let’s try to make it clear using a simple Shopping Cart Example Suppose, You have an online shop and there are 2 … Read more