Example of Constants in php

<html>
    <head>
        <title>Constants</title>
    </head>
    <body>
        <?php
           
           
            $max_width = 980;
           
            define("MAX_WIDTH", 980);
           
           
            echo MAX_WIDTH; echo "<br />";
           
           
           
           
            $max_width += 1;
            echo $max_width;
           

        ?>
    </body>
</html>

0 comments:

Post a Comment

Subscribe to RSS Feed Follow me on Twitter!