Rename, move, resort the files of project
[sandbox.git] / sb1 / constants.php
blobafb1a687129602c335712b738c38574f362d1d50
1 <html>
2 <head>
3 <title>Constants</title>
4 </head>
5 <body>
6 <?php
7 $max_width = 980;
8 define("MAX_WIDTH", 980);
9 echo MAX_WIDTH; echo "<br />";
10 $max_width += 1;
11 echo $max_width;
12 ?>
13 </body>
14 </html>