How to Make SQL Server Notifications Work in ASP.NET Core

In this article, we’ll dive into setting up SQL Server notifications in ASP.NET Core using SqlDependency. SQL Server notifications are useful for scenarios where your application needs to respond to database changes, such as real-time updates for client applications. We’ll go over setting up SqlDependency, configuring Service Broker, handling common issues, and ensuring reliable notifications … Read more

How to Create a Restful API in PHP With SlimPHP and MySQL

Creating RESTful API is essential skill for modern web development, allowing applications to communicate with each other over the internet. In this detailed guide we’ll explore how to create a RESTful API using SlimPHP and MySQL. We’ll cover everything from setting up your development environment to building and testing your API endpoints. What is a … Read more

Categories PHP

How to Check the Laravel Version of Your Project

check Laravel version

Laravel has become a go-to PHP framework for many developers, thanks to its elegant syntax and powerful features. Whether you’re building a small website or a complex web application, Laravel provides the tools you need to succeed. But knowing the version of Laravel your project is using is crucial for several reasons. Keeping Laravel updated … Read more

How to Add .gitignore to an Existing Repository

Add Git Ignore to an existing Visual Studio Project

In Git, a .gitignore file plays a crucial role in managing your repository. It specifies which files and directories should be ignored by Git, preventing them from being tracked and included in your version control history. This is essential for excluding files that are not necessary for the project, such as build artifacts, temporary files, … Read more

How to Implement Cookie-Based User Authentication in ASP.NET Core

Login Web Application using Cookie Authentication in ASP NET Core

In this tutorial, we’ll explore how to create a robust login web application using Cookie Authentication in ASP.NET Core. We’ll walk through the steps for implementing user registration and logout functionalities seamlessly. Additionally, we’ll leverage Dapper, a micro ORM, to handle database connectivity efficiently. By the end, you’ll have a solid understanding of how to … Read more

Importing and Exporting Excel Files in Laravel Livewire

In this article, we’ll explore how to use Livewire to create an inventory management app that supports importing and exporting Excel files. Before we begin, ensure you have installed the following: Visit this article to guide you to configure Laravel on your local environment Tutorial Preview: I. Setting Up the Laravel Project Let’s start by … Read more