php dclarer une constante url


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

Wicked Wryneck