24 lines
366 B
PHP
24 lines
366 B
PHP
<?php
|
|
|
|
// This is a constant
|
|
define('NAME', 'Yoshi');
|
|
|
|
// This is a variable
|
|
$age = 30;
|
|
$age = 25;
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>My First PHP File</title>
|
|
</head>
|
|
<body>
|
|
<h1>User Profile Page</h1>
|
|
|
|
<div><?php echo NAME; ?></div>
|
|
<div><?php echo $age; ?></div>
|
|
</body>
|
|
</html>
|