PHP/Language Basics/Constant
Defining a Constant
<html>
<head>
<title>Defining a constant</title>
</head>
<body>
<?php
define("USER", "Joe");
print "Welcome ".USER;
?>
</body>
</html>
<html>
<head>
<title>Defining a constant</title>
</head>
<body>
<?php
define("USER", "Joe");
print "Welcome ".USER;
?>
</body>
</html>