Crus4

logo

How to Declare a Variable in PHP

How to Declare a Variable in PHP Variables are containers that temporary holds any type of value. To declare a Variable in PHP, we have to use a $ sign followed by the the variable name and assign it to any value. Here is a Syntax. Syntax In an above syntax you have get an […]

PHP Basic Syntax

PHP Basic Syntax Unlike HTML, CSS and JavaScript whose scripts are executed on the browser, PHP script is executed on the Server and the result is sent back on the web browser. PHP is an open-source programming language, that is widely used to build dynamic websites. All PHP files are saved with an extension of […]

How to Install XAMPP Server on Windows 10

How to Install XAMPP Server on Windows 10 In order to run our PHP code we must have PHP, MySQL and Apache Server installed and configured on our system. But to make our work easier we will install a third-party software XAMPP Server. This XAMPP server will automatically install and configure all these three software’s […]

Introduction to PHP

Introduction to PHP PHP is a short for Hypertext Preprocessor. PHP is the most popular server-side scripting language for Web Development. It was created by Rasmus Lerdorf around 1990s, since then it becomes one of the popular languages for building dynamic websites. Before you learn PHP, make sure you have enough knowledge of HTML, CSS […]