Tips & Tricks

Tips & Tricks

MySQL Annoying Warning Beep Sound

Every time when I type in a wrong MySQL command at the console, there’s a very annoying beep sound coming out from my laptop and it is LOUD!. I keep looking for solutions on the Internet and found out that I’m not the only person who tries to disable the warning beep sound. After sometime,…

ProgrammingTips & Tricks

Date/Time in PHP

Here are some of the examples on how you could get the current date or time in PHP. We will walkthrough the basic commands or codes where we can set the timezone in PHP and get the current date and time based on the current timezone. Timezones You can see what is the timezone your…

ProgrammingTips & Tricks

What is PHP null coalescing operator (??)

Introduction In the world of web development, PHP remains a popular choice for building dynamic and interactive websites. To streamline coding and enhance the readability of PHP scripts, developers often rely on various operators. One such operator that has gained prominence in recent years is the PHP Null Coalescing Operator, denoted by ??. In this…