CRUD Operations Web App using PHP & MySQL | Part 2
| | | | | |

CRUD Operations Web App using PHP & MySQL | Part 2

This is the 2nd part of the CRUD Operations Tutorial & the 3rd part of the PHP Web Application Tutorial series. If you missed previous parts, then you can find here => Getting Started with Web Application using PHP & MySQL | Tutorials I’m assuming that you have followed the previous part of this Tutorial &…

CRUD Operations using PHP & MySQL | Tutorials with Source Code
| | | | | |

CRUD Operations using PHP & MySQL | Tutorials with Source Code

Yes, I’d say a large percentage of most applications I’ve worked on is basic CRUD(Create, Read, Update, Delete) operations. Especially In any Web Application, you need to repeat the CRUD Operations for every object in your system. For creating beautiful & responsive UI, I’m using AdminLTE Template. So, In case if you missed the first part of this…

Getting Started with Web Application using PHP & MySQL | Tutorials
|

Getting Started with Web Application using PHP & MySQL | Tutorials

PHP is a programming language used to create dynamic contents with the database. Basically, PHP is used to develop Web Applications. In this Tutorial, we’re going to Develop a very simple Web Application & we’ll add features in our application in next parts of the tutorial. Here’s the Table of Content for this Tutorial series….

Error Logging in Asp.Net Core Application | NLog | Log4Net | Tutorials
| | | | |

Error Logging in Asp.Net Core Application | NLog | Log4Net | Tutorials

I find it tough to believe that many developers do not use any Logging library in their applications. For a Web Applications, Error Logging is one of the key attributes to help troubleshoot application bugs. In many cases, developers don’t have direct access to his application after deployment. So, in order to assure the application’s…

Why I’m in Love with .Net Core – Future of .Net Core 2019
| | | | |

Why I’m in Love with .Net Core – Future of .Net Core 2019

If you ask “what is the best” type of questions, you will end up with biased answers, usually. Everyone will tell you his own preference. Although you have listened to this famous Quote “Love is blind” & no one believes to defend his love with arguments & solid pieces of evidence, but In this Article,…

Top 10 .Net Core Features You need to know
| | |

Top 10 .Net Core Features You need to know

.Net Core is a lightweight and cross-platform version of the DotNet framework and the awesome thing is Developers required the same expertise to work with Asp.Net Core as .Net Framework. With Every Update, new features are added that help developers deploy high-performance & highly scalable web applications using less Code. Are you a Web Developer or want to Develop an app for Desktop…

Creating Interactive Dashboards in Asp.net Core MVC
| | | | | | |

Creating Interactive Dashboards in Asp.net Core MVC

Dashboards used to represent Application’s Data. Actually one of the main purposes of a Dashboard is to give an overview of the complete application. In Applications like Admin Panel, Dashboards should be Powerfull enough to give a complete summary of your Apps running in a real-time environment. Here’s my Tutorial, If you’re interested in Dynamic User-defined Dashboards using Asp.Net…

Dynamic Role Based Authorization Asp.net Core | Assign Role from DB
| | | |

Dynamic Role Based Authorization Asp.net Core | Assign Role from DB

Often times, after you’ve authenticated your user, now you want to authorize what he actually has control over based on his role. A user should only have access for what he’s authorized to control. In Applications like Admin Panel where your Application is being managed by multiple users, you must manage your users according to…

User’s Activity Logging in Asp.net Core MVC Application | C#
| | | |

User’s Activity Logging in Asp.net Core MVC Application | C#

In this Article, I’m going to Implement User’s Activity Logging in Asp.net Core MVC Application. If an application is managed by more than one users then you must be aware that who is performing which activity. Why Activity Logging Before start Implementation, you must have a clear idea for what kind of applications Activity Logging is necessary….