DIV TAG EXAMPLE <div class=”new”> <h1>this the tag</h1> </div> DATALIST TAG <input list=”browsers” name=”browser” id=”browser”> EXAMPLE <datalist id=”browsers”>  <option value=”Edge”>  <option value=”Firefox”>  <option value=”Chrome”>  <option value=”Opera”>  <option value=”Safari”></datalist> DEL AND INS TAG EXAMPLE <del>mondoy</del> <ins>monday</ins>

Publishing an app like Dream11 that involves real money on the Google Play Store requires navigating strict legal and regulatory guidelines, especially because it involves fantasy sports and gambling-like elements. Here’s a step-by-step guide to help you deploy such an …

How to publish on play store app like dream 11 and actual money is involved how can I deploy it Read more »

Creating a blog editor similar to WordPress involves handling various types of content, such as paragraphs, headings, code snippets, images, and more. To achieve this using PHP, you can follow these steps: 1. Set Up the Editor: 2. Storing the …

How to create a editor like WordPress blog and I want to save this data in a table can you help me how I can manage paragraphs, heading, code etc. using php Read more »

Step 1: Create the Database in MySQL First, create the database in MySQL. CREATE DATABASE berojgar_management; USE berojgar_management; 1st Query=> create database berojgar_management;2nd Query => USE berojgar_management;3rd Query => create table berojgar(berojgar_id INT auto_increment primary key,berojgar_name varchar(255)) ; ============================================================================================= Step …

Spring Boot CRUD Read more »