Data Table is a javascript framework that adds filters to your existing table. It is one of the easiest ways to create filters in HTML table by just adding a few lines of code. Follow the steps given below to make data table.
Sunday, 25 June 2023
Data Table
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Solved Information Technology Tools and Network Set1 | NIELIT O Level
(M1-R5) Solved Information Technology Tools and Network Set1 | NIELIT O Level
1.1 : Which of the following function is used to display current date and time?
(A) Date( ) (B) Today( ) (C) Now( ) (D) Time( )
1.2 : In presentations, which of the following can be inserted?
(A) Sound Clips (B) Movie Clips
(C) Both (A) & (B) (D) None of the above
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Sunday, 18 June 2023
Solved Internet of Things and its applications (M4-R5) January 2022
Q 1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the "OMR" answer sheet supplied with the question paper, following instructions therein.
1.1 : Which protocol is lightweight ?
(A) MQTT
(B) HTTP
(C) CoAP
(D) SPI
Labels:
O level
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Saturday, 17 June 2023
Get Rest API | Core PHP
This post will help you to make get API to return records using core PHP in JSON format.
Return A single record
<?php
header("Content-Type:application/json");
$response['roll'] = 101;
$response['name'] = "ram";
$response['city'] = "vns";
$json_response = json_encode($response);
echo $json_response;
?>
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Subscribe to:
Posts (Atom)