programming

Guide
1

How to Update PHP in WAMP

In this article, we will show you how to update PHP in WAMP or add new PHP version. Before getting into it, we will first give a brief introduction on WampServer. Introduction WampServer is one of the most popular web development environment tool for Windows. It allows you to create web applications with Apache2, PHP…

Programming

PHP Sessions

What is PHP Sessions ? When creating a website that requires a user to login, PHP sessions is a very useful function that allows you to store the user’s information on the server for later use. However, PHP sessions is only temporary and will be delete once a user leaves the website. For example, you…

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…

FeaturedGuideHighlightsWindows

How to update phpMyAdmin on WAMP

Introduction How to update phpMyAdmin on WAMP ? This tutorial provides step-by-step guidance on updating phpMyAdmin on WAMP to version 5.2.0, which is the latest version available at the time of writing. Whether you use WAMP or another Windows web development environment, this guide can be easily adapted to upgrade your phpMyAdmin installation. Follow this…