Que fait définir en php
//The defined() function checks wheather a consant exists
<?php
define("Greet","Hello World");
echo defined("Greet");
?>
Filthy Frog
//The defined() function checks wheather a consant exists
<?php
define("Greet","Hello World");
echo defined("Greet");
?>