Category Archives: Technical questions

Finding out the duplicate value in an array without using array function in php

How to adjust td width in a table ?

Adjust the table width using width size

here we used specific value to the width

Selectors in jquery

Selectors in jquery start with $ sign followed by () Different type of selectors 1. Element selector- it selects elements based on elements name For example $(“p”) 2. Id Selector– to select single element we will use this selector Example- $(#myid) 3. Class selector- to select a element with specific class Example-$(“.test”); Below example will… Read More »

What is mean by mysql partitioning ?

#splits large database into smaller and manageable ones. #partitioning large database into numberof rows or number of columns. # bewlow command will provide whether the mysql support parition SHOW VARIABLES LIKE ‘%partition%’;– it will show yes SHOW PLUGINS;– it will show partition active # following are the different type of partitioning . Range Prtitioning .… Read More »