Categories
jQuery

Avoid jQuery conflicts with other libraries

jQuery uses $ as a alias or shortcut. So if you use another javascript library (like prototype, mootools etc) that uses same alias then you are in a jQuery conflicts situation. Use no-conflict mode to avoid jQuery conflicts: You have to use a new variable name to replace with jQuery $.For e.g. <script src=”jquery.js”></script> <script […]

Categories
MySQL

MySQL GROUP BY & HAVING clause

To group rows into subgroup by one or more values of columns we use MySQL GROUP BY. Suppose in user table same country name exists for many times for different user. So if we use GROUP BY for country column to a SELECT query then only unique country will be listed. EXAMPLE: SELECT * FROM […]

Categories
MySQL

Mysql update fields with random sentence

Sometimes we need to add demo text in a website for checking whether it working fine or somewhere we test website with demo text. So on this case unwanted text inserted into database and you need to remove it. So, we can update fields with random sentence in this case. For example the fields value […]

Categories
Creative blog

Choose the right blog topic

The first thing before writing a blog is choose a blog topic that suitable for you to build a successful blog. So do not make any mistake by choosing a wrong topic. So while creating a blog first ask yourself that “What topic should I choose?” or “What topic I am capable to write?”This is […]

Categories
Css Css3

Knowing !important

Using !important rules can be a dangerous way to style your webpage that usually means you are forcefully doing this, but they exist for some reason. The paragraph will be colored red, even there is a ID selector that has higher priority. So, the this rule overrides all the particular property. An !important rule works […]

Categories
MySQL

Primary Key, Unique Key, Key, Foreign Key

A primary key is a column or multiple columns that uniquely identify each row in a table.Basic key of primary key:– This must contain unique values– For multiple columns, the combination of values must be unique– Primary key is not null– Only one primary key will be present in a table As MySQL works faster […]

Categories
Css3

A Little Known CSS Facts

As you have been writing css for several years day by day you are getting new things that you have never used previously. Each and every well trained front-end developer feature-tests before using any features which a browser may not have. This feature testing has always done with scripting, and most of the people use […]

Categories
MySQL

Database Manage in MySQL

Database Manage in MySQL is a first priority to maintain a database. Here you will learn how you can manage database i.e. create a new database in MySQL, remove existing database etc. A database is nothing but a container of data that stores any kind of data. Here is how database manage: Creating DatabaseCREATE DATABASE […]

Categories
Creative blog

5 easy step when start a blog to earn money

Let me know if you are very serious about making money. Starting a blog is an easy turn to go.Here we will discuss few steps that helps you to start a blog and make money. Jesse Owens said “We all have dreams. But in order to make dreams come into reality, it takes an awful […]

Categories
Feature Story Technology

AI Research Writers: Are They Game Changers or a Threat to the Academia?

Artificial Intelligence has become a significant part of our daily lives and has successfully automated hundreds of our day-to-day activities. Recent AI developments have entirely transformed the landscape in the field of thesis research and writing. AI research writers have changed the game of thesis research and writing. AI-powered programs such as ChatGPT have relieved […]