0% found this document useful (0 votes)
30 views

Uio Course

PHP is a scripting language used to create dynamic and interactive web pages, and is a free and efficient alternative to Microsoft ASP. Constants in PHP are identifiers for simple values that cannot change during script execution, and are automatically global. Constants are defined using the define() function, which specifies the name, value, and optionally whether the name is case-sensitive.

Uploaded by

Saïd Gamih
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

Uio Course

PHP is a scripting language used to create dynamic and interactive web pages, and is a free and efficient alternative to Microsoft ASP. Constants in PHP are identifiers for simple values that cannot change during script execution, and are automatically global. Constants are defined using the define() function, which specifies the name, value, and optionally whether the name is case-sensitive.

Uploaded by

Saïd Gamih
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

PHP is a server scripting language, and a powerful tool for making

dynamic and interactive Web pages.

PHP is a widely-used, free, and efficient alternative to competitors such as


Microsoft's ASP.

<!DOCTYPE html>
<html>
<body>

<?php
echo "My first PHP script!";
?>

</body>
</html>

PHP Constants
A constant is an identifier (name) for a simple value. The value cannot be
changed during the script.

A valid constant name starts with a letter or underscore (no $ sign before the
constant name).

Note: Unlike variables, constants are automatically global across the entire
script.

Create a PHP Constant


To create a constant, use the define() function.

Syntax
define(name, value, case-insensitive)

Parameters:

name: Specifies the name of the constant


value: Specifies the value of the constant
case-insensitive: Specifies whether the constant name should be case-
insensitive. Default is false
The example below creates a constant with a case-sensitive name:

You might also like