Categories
Creative blog

5 ways to make money from blogging

Make money by blogging in a day because this can be a great source of side income. If you spend enough time on blogging on your free time then this can be a good way to make money. Let’s see the five ways to start money from blogging. 1) Promote your business through blog Through […]

Categories
Php

Match a backslash with preg_match() in PHP

Sometimes you need to match a backslash with preg_match, but this is not as straightforward as you might first think! The preg_match() function is nothing but a perl-compatible regular expression pattern match. The preg_match() function searches a string for pattern and returning true while pattern exists, otherwise false. A backslash(“\”) is used to escape a […]

Categories
Creative blog

5 online images website for your next blog

Find best images online for your next blog post using any of these free and paid image hosting sites. Lot of writers use photos that they find online by searching related to their articles. But it is illegal to take images from other websites without their permission. You need to contact the site owner to […]

Categories
jQuery

Why use jQuery on() instead of click()

The on() method attaches one or more event handler functions for one or more events to the selected elements. Event handlers attached using the jQuery on() method will work for both current and future elements i.e. dynamic element created by a script. Note: As of jQuery version 1.7, the jQuery on() method is the new […]

Categories
Creative blog

List of Blogs that Accept Guest Posts

One of the finest methods for obtaining backlinks to your blogs and generating income is guest posting or creating blogs. The advantage is that the backlinks are of a high caliber and can allow you to improve your domain authority and rank higher. It is better known as content marketing. The majority of blogs are featured based on […]

Categories
Php

Permutation Of Multidimensional Array in PHP

Permutation of multidimensional array is a very interesting thing you can face somehow in your project once. Looping through is quite difficult rather than a function. Here we will show an example of permutation of a multidimensional array. Click Here to get the script. You will get the results as below: Array ( [0] => […]

Categories
Creative blog Technology

5 Free Tools For Real Time Website Visitors Tracking

Use these 5 online free tools for real time website statistics and how many visitors are on your website right now. Website visitor tracking software basically works by installing a script on your site which collects the website visitor data directly. Website Visitor Behavior Tracking Software. Web site visitor tracking gives us detailed understanding of […]

Categories
jQuery

Parse json data with jquery

jQuery parseJSON() takes a well formed JSON string and then returns the resulting JavaScript value. Prior to jQuery 1.9 version, $.parseJSON returned null value rather than throwing an error if this was passed an empty string, null, or undefined, even though those are not valid JSON. Here are some basic things about JSON: JSON is […]

Categories
MySQL

MySQL GROUP_CONCAT() maximum length

Here in this tutorial, you will learn how you can use the MySQL GROUP_CONCAT() function to concatenate strings from a group with various options. There are many cases where you can apply the GROUP_CONCAT() function to produce useful results. In MySql, GROUP_CONCAT() is used to convert multiple rows into a single string. However, the maximum length […]

Categories
Php

PHP4 vs PHP5 | Difference between PHP4 and PHP5

PHP, Hypertext Preprocessor is a Open Source Language which is trend in the 20th century for creating and developing fast and dynamic web pages. This is also Server Side Scripting Language with a powerful tool for creating dynamic web pages. Lets see the difference between PHP version 4 and 5. Here is the difference between […]