Recent Posts
How to enable/display errors in PHP ?
Doing mistakes during development is very common among developers. Sometimes such mistakes results in 500 error or white screen of death (WSOD) in PHP ….
Best Download Manager for Linux Ubuntu 20.04
Are you struggling with failed downloads without resume capability and looking for the best download manager for Linux Ubuntu 20.04 ? Then this article will…
Identify what technology any website is using
If you’re interested to know or identify what technology is being used by any website of your interest, then you’re not alone. There are mainly…
Whatsapp Web not working in chromium fix
n this guide I’m going to tell you how you can make WhatsApp Web to work with Chromium. You’ll find lots of other options to make it run in Chromium, I’m going to provide you the solution which seems best to me.
Install phpmyadmin in Ubuntu 19.10
This guide will help you with the installation of phpmyadmin on Ubuntu 19.10. If you’re using Ubuntu 19.10 or above, you’ll notice that you cannot…
while loop php | php tutorial | learn php online
– While loop in php is used to execute a statement or set of statements while the condition evaluates to true. – while loop is…
loops in php | php tutorial | learn php
Sometimes, within our code, we need to execute a set of statements multiple times which may or may not be based on particular condition. So…
foreach loop in php | PHP Tutorial | learn php
– The foreach loop in php works only with Arrays or Objects – Foreach loop in php used to loop through various values within an…
If Statement | PHP Tutorial
Conditional statements in PHP, like any other programming language helps us to perform actions based on some type of conditions. These conditions can be logical…
Functions in PHP | PHP Tutorial Free
Functions in PHP or in any other programming language is a block of statements that are written to perform a specific task. – Functions once…