Categories
Careers Feature Story

How To Secure A Job In A Foreign Country?

With the globalization of job markets, you can explore a pool of jobs in other countries. However, you must plan and research everything thoroughly to get employment in another country. There are a few things that you have to consider while searching for the right job. This guide lays out essential steps to follow so […]

Categories
Business Feature Story Technology

Top Crypto Influencers: Shaping the Future of Digital Finance

The force of cryptocurrency has been felt in financial terms, with Bitcoin disrupting markets worldwide since its advent. This industry has welcomed the growth of crypto influencers who mold narratives around blockchain technology and digital assets using their insights, analyses, and opinions. Become these influencers by being active on platforms like Twitter or Facebook, among […]

Categories
Json

Syntax of JSON

Basically Syntax of JSON is the subset of the JavaScript syntax. It has following notation: Data is represented in name/value pairs. The name/value pairs are separated by , (comma). Curly braces hold objects. Square brackets hold arrays. Below is a example of Syntax of JSON: {“students”:[ {“Name”:”Tim”, “Age”:”25″}, {“Name”:”John”, “Age”:”30″}, {“Name”:”Jane”, “Age”:”45″} ]} So,students[0].Name + […]

Categories
Css

7 CSS tricks for website

It is very essential to remember when using CSS to website that you need to maintain some types of tricks which is very helpful. CSS tricks: 1) Don’t fix the font size:You do not know in what resolution people are using your website so let auto fix the font size depends on ratio. Avoid p […]

Categories
MySQL

MySQL Transaction

Using MySQL you can COMMIT a statement and ROLLBACK to manage transaction. While adding a data into two or more tables where one primary key for one table is the foreign key of another table it may happen sometimes that after adding data into first table MySQL failed to add data into second table due […]

Categories
Monetize

No Investment for Any Online Jobs

For making money, online jobs are becoming very popular and easy to maintain around the world. Million of users are using online jobs for making extra income for part time from home. Online Jobs are becoming very popular in India & all over the world for earning Money online from home without any investment. Now […]

Categories
Creative blog

Create a free Blog on WordPress.com

WordPress blog is nothing but converting your hobby into business. So by business or profession share your thoughts on a subject you love. Blogging is free and you can create blog on blogger or WordPress. Let’s see how to start a WordPress Blog: Go to http://wordpress.com Fill up the online form. In the blog address […]

Categories
Php

array_map: stop writing foreach() cycles

Php 5.3 has a solution for ignoring for(), foreach() cycles that will reduce the average number of iteration structures you need to write i.e. array_map. This function in PHP sends each value of an array to a user defined function, and then returns an array with new values that is given by the user defined […]

Categories
MySQL

Subquery in MySQL

Subquery in MySQL means Query inside another query on SELECT, INSERT, UPDATE or DELETE. A subquery must be enclosed with parentheses and can be used anywhere in an expression. The main advantages of subqueries is that it allow queries that are structured so that, it is possible to isolate each part of the statement and […]

Categories
Html

Images in HTML

In html document, images are added via img element where the src attribute contains the url to the image path. Images example: <img src=”image.jpg”> There are different types of image format like jpg, png, gif, bmp etc.There is a attribute called “alt” which is used to give alternate information about the image or in case […]