What is callback function ? Get link Facebook X Pinterest Email Other Apps By Hasib Kamal - May 22, 2016 A callback function also known as a higher-order function is, a function that is passed to another function as a parameter, and the callback function is called inside the other function. Get link Facebook X Pinterest Email Other Apps Comments
Input type date default placehoder change By Hasib Kamal - May 28, 2024 <input id="my_date" name="my_date" class="form-control" placeholder="My Date" type="text" onfocus="(this.type='date')" onblur="(this.type='text')"> Read more
Way to get fillable fields from a specific table By Hasib Kamal - January 11, 2022 SELECT CONCAT("'",COLUMN_NAME,"',") FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'undp_liupcp_survey' ORDER BY ORDINAL_POSITION ASC; Read more
MySQL table creation command By Hasib Kamal - April 15, 2017 CREATE TABLE `std`(`id` int(11) NOT NULL AUTO_INCREMENT,`name` VARCHAR(20) DEFAULT NULL, PRIMARY KEY(`id`)); Read more
Comments
Post a Comment