Result Size:
625 x 571
tryphp_func_misc_constant.php:
<!DOCTYPE html> <html> <body> <?php //define a constant define("GREETING","Hello you! How are you today?"); echo constant("GREETING"); ?> </body> </html>
Hello you! How are you today?