Categories
Php

Significance Of PHP To Blog And Website Development

PHP is a standout amongst the most admired and famous server-side scripting languages which are generally utilized for making websites. With speedier pivot time, upgraded security and reasonableness, PHP has turned out to be favored decision of the website developers. Because of plenty of advantages of this scripting language, numerous popular online organizations, for example, […]

Categories
Php WordPress

Top 4 Reasons Why To Use WordPress For Mini-Sites And Sales Letters

When it comes to the best blogging platforms that can be used for free online, WordPress is the name that comes to everyone’s mind. It is the best content management tool that is also capable of making mini-sites and sales letters as well. A mini-site is essentially considered to be a small website that contains […]

Categories
Php WordPress

Top 10 Advantages of developing a website from WordPress

Want to start a website? Well, you basically have two options, either to go and hire a professional coder and get your website coded or to go to platforms like WordPress and make your website yourself. This is a problem that almost everyone faces, but this article might help you with your choice. In this […]

Categories
Php WordPress

5 Best WordPress Author Bio Plugins

WordPress Author Bio Plugins is so much more than an online trend, especially on multi-author websites. An author bio box should be eye catching and very attractive. It should complement the theme and color of your website, using similar fonts and layout. Now you can see the easiest way to create and display an author […]

Categories
Careers Interview questions Php

Drupal Interview Questions and Answers

Here are list of drupal interview questions and answers that will help prepare you for your next drupal interview ahead of time. Normally drupal interview questions start with some basic concept of the subject and later they continue based on the further discussion and what you answer. I have listed down few commonly asked Drupal […]

Categories
Php

Read Gmail Emails using PHP & IMAP

It is very easier to retrieve emails from Gmail account with the help of PHP and its IMAP extension. Read Gmail is now very easier than we can think with the help of PHP and its IMAP extension that matches the given search criteria.You need to meet the minimum requirements for this: PHP version >= […]

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
Php

Date range in PHP

Date and time values are very essential in PHP as there are different time formats, time zones, daylight saving offsets. By carefully with the date inputs you can format output however you like. In the below function you can get range of dates: function date_range( $start, $end, $step = ‘+1 day’, $format = ‘Y/m/d’ ) […]

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
Php

PHP Force Download

A force download script in PHP can give you more control over a file download rather than providing a direct link. Using a force-download script, you can: Validate whether a user is logged in Track total number of download <?php function force_download( $file, $new_name=”filename.doc” ) { $dir = “”; if ((isset($file))&&(file_exists($dir.$file))) { header(‘Content-type: application/force-download’); header(‘Content-Disposition: […]