PHP dclarer une constante URL


<?php
  define("CONSTANT", "Bonjour le monde.");
  echo CONSTANT; // affiche "Bonjour le monde."
?>

Wicked Wryneck