atlas news
    
PHP forever
21  février     16h28
Custom Pipe Example In Angular.
rajesh    Custom Pipe Example In Angular. This tutorial will show you how to create an Angular Custom Pipe. It is handy if we want to reuse some logic across our applications. It allows us to change the format in which data is displayed on the pages. For instance, consider the date of birth as and...
19  février     11h21
How to Style Even and Odd Div.
rajesh    We can easily change the background color of div’s even and odd index using the:nth child pseudo class with the even and odd keywords, respectively. Odd and even are keywords that can be used to match child elements whose index is odd or even the index of the first child is . Here, we specify...
04  novembre     05h55
Angular Code Review Checklist.
rajesh    Introduction: Code review is a process where developers have their work reviewed by their peers to check the code’s quality and functionality. In the case of Angular, there are specific points that we must check to ensure code effectiveness, which we will be discussing in detail in our upcoming...
09  juillet     14h40
Create PDF in PHP Using FPDF.
rajesh    In this post, I will explain how to create a pdf file in php. To create a PDF file in PHP we will use the FPDF library. It is a PHP library that is used to generate a PDF. FPDF is an open source library. It is the best server side PDF generation PHP library. It has The post Create PDF in PHP...
21  mars     17h26
Ajax Live Search Example In PHP & MYSQL.
rajesh    Ajax Live Search Example In PHP MYSQL. In this post, we will create a simple live search example in PHP MySQL using Ajax. With the help of this tutorial, we can implement a live search feature in web applications using PHP MySQL. This feature is useful when we have a large amount The post...
10  février     14h25
Angular Dropdown With Search And Multi Select.
rajesh    In this post, we will learn to select dropdown with search and multi select features. i It’s a simple example of a dropdown with search and multi select using ngselect. This article will implement an angular ngselect box with search and multi select. What is Angular ng select It is a Lightweight...
30  décembre     17h11
Find All Date Between Two Dates In PHP.
rajesh    This post will find all the dates between the two dates in PHP. We will create two variables start date and end date in DD MM YYYY format and find all the dates between the two dates. We can select from the date and end date through the date picker and after submitting the form we can The post...
26  décembre     11h30
Curl Example In PHP.
rajesh    What is cURL The cURL stands for CLIENT URL . It is a library that allows clients to access the data from the Remote Server by an HTTP request in PHP. We can easily communicate with different websites and domains with the help of cURL in PHP. How To Enable cURL In PHP. To use the The post Curl...
20  décembre     13h34
What Are Directives in Angular?
rajesh    What Are Directives in Angular In this article, we will learn about the angular built in directive. It is a custom HTML attribute that changes the behavior of the DOM element and changes the DOM style. In other words, we can say that it is being used to extend the power of the DOM elements. ...
15  octobre     10h11
Quiz App In Angular.
rajesh    This tutorial is about how to create a basic quiz app in Angular. This is a fundamental example of understanding the angular concept. Quiz application in one form or the other is becoming a general requirement for most applications these days. About: A list of questions will be displayed, each with...