How to Remove Ads by Albireo from Google Chrome

How to Remove Ads by Albireo from Google Chrome

1:25 PM
Jefinson O
0 Comments

How to remove any ads from your Google Chrome I am using AdBlocker, still ads? What do I do? Hello guys, In this post, I'm going to be explaining How to remove any ads from your Google Chrome browser. Recently I had a malware named "Albireo" in my PC, I tried many tricks to get rid of it but nothing helped. Finally...

Alternative to Blackberry Hub in Android

Alternative to Blackberry Hub in Android

7:02 AM
Jefinson O
1 Comments

Read and reply all your messages from one app Hello guys, you must be wondering if there is an unified messenger for android to be able to view and reply all messages in a single application. Most of you might have tried searching like "Blackberry Hub for android" in YouTube and Google multiple times. Because I am one...

How to start blogging with Google Blogger

How to start blogging with Google Blogger

9:02 AM
Jefinson O
0 Comments

Blogger gives you a great blogging experience with simple and essential interface. Create a new google account if you don't have one Since the owner of Blogger is Google, you must have a google account to start blogging using Blogger if you don't have one. Click here to create a new Google account.  Open Blogger Open Blogger homepage, click here to...

Search engine with drop down suggestion using PHP and AJAX

Search engine with drop down suggestion using PHP and AJAX

8:07 AM
Jefinson O
2 Comments

h2,h2,h3,h4,h5,h6{ margin: 20px 20px 20px 0; } Hello developers, in this post we are going to create a search engine with drop down suggestion. The languages we are going to use are, HTML CSS JavaScript PHP  SQL The relational DBMS we are using is MySQL. Files used: Search.html searchScript.js  search_DB.php config.php Database details Username = "root" Password =...

Overview of PHP 7

Overview of PHP 7

12:14 PM
Jefinson O
2 Comments

1. What are the new features in PHP 7? While migrating from PHP 5.6 to PHP 7, all PHP developers are so excited to know what are the new features in PHP 7. Well, PHP 7 does not disappoint anyone, here are some of the interesting new features applied in the new version.   High performance & Consistent...

5 important string functions in PHP

5 important string functions in PHP

9:57 AM
Jefinson O
0 Comments

1. ucfirst() ucfirst() makes the first letter of the word in UPPERCASE. This function is going to be very useful to display names on your website.  <?php $str = "john"; echo ucfirst($str); ?> The output will be like John 2. strlen() strlen() return the length of the string.  This function return the number of characters in the string...