Sunday, February 4, 2024

Important SQL Queries For Quick Use

  // SQL query to duplicate the table structure without copying data Query ->   CREATE TABLE $newTableName AS SELECT * FROM $originalTabl...

Wednesday, January 31, 2024

Javascript Revision Topics

  1- Try substring() - How to use this method. 

Monday, January 8, 2024

Javascript Functions Reference For Basics

  Function Reference Code ->  1- Create javascript function to add two number and console it using return. function addNumbers(x, y) {...

CodeIgniter 4 Basisc Guide for Starting new Project

CodeIgniter:   CodeIgniter is an open-source PHP framework designed to build dynamic web applications It follows the MVC (Model-View-Control...

Thursday, January 4, 2024

Rect Native Expo Basics Guides

React Native is Open-Source Framework developed by Facebook. It enables developers to build Mobile Applications using Javascript and React....

Wednesday, July 12, 2023

Laravel Basics

 create a new Laravel project - composer create-project laravel/laravel example-app globally installing the Laravel installer -   composer g...

Tuesday, November 15, 2022

How to Use Cookies in PHP Web Application Basic

 How to Use Cookies in PHP Web Application Basic // Set Cookie in browser and get its value $name = 'AnilSahu'; $value =...