Clear search box and you will see search hint
PHP is arguably one of the most widely used server-side programming languages. It’s the language of choice when developing dynamic and responsive websites. PHP 8 is currently latest stable version of
Before we learn how to implement CRUD operation, let's first understand what is CRUD. CRUD stands for Create, Read, Update & Delete. Create means insert record into table, read, update and delet
Here we are announcing upcoming version of nishchay framework. We have updated framework as per user feedback and also added many features to make development even much faster. We will first launch b
MailHog is an email-testing tool with a fake SMTP server underneath. It encapsulates the SMTP protocol with extensions and does not require specific backend implementations. MailHog runs a super simpl
Another most exciting feature of PHP 8 is JIT (Just in time compiler). Below is quote from PHP RFC Proposal: PHP JIT is implemented as an almost independent part of OPcache. It may be enabled/disa
Property promotion is new syntax in PHP 8 which allows property declaration in construct method. What we now is declare property in class then define same property which then assign value to declared
Annotation officially coming to PHP. Its available from version PHP 8. This is similar to annotation in another language. Till now PHP did not supported annotation but we were using it with the help o
NGINX is open source web server which is mostly used with PHP. t was originally developed to tackle the 10,000 concurrent connections. NGINX can be used as a standalone web server, or serve in front
A session can be defined as a server-side storage of information that is desired to persist throughout the user's interaction with the web site or web application. HTTP is stateless, means every requ
Before we explain why entity must be used, first learn what is entity. Entity is class presentation of database table, where each properties of class represents database column. Nishchay allows defin