PHP echo2
Write a Program to show the use of echo in php? Output:
Write a Program to show the use of echo in php? Output:
To study the use of ‘echo’ statements . OUTPUT :
PHP (Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. PHP … Read more
Constants are variables that except once they are defined they cannot be undefined or changed. A constant is an identifier or a name.The value cannot … Read more
DATATYPES IN PHP Data Types: Data types defines the type of values a variable can store. PHP supports the following data types:· String· Integer· Float … Read more
Variables in PHP Variables are like a container to store data.Variables in php starts with Dollar sign ($). Example: $a = “Hello”;$b = 50;$c = … Read more
This article is about the installation of MySQL 5.5. Firstly check the configuration of a system is either 32 bit or 64 bit. Download the setup … Read more
MySQL MySQL is an open source relational database management system (RDBMS) based on Structured Query Language (SQL). From where we can download the MySQL setup … Read more
To write a Python Program to perform Merge sort. OUTPUT:Enter the list of numbers: 1 3 2 4 5 6 7 9 8 Sorted list: … Read more