how to define constant in php ?
<?php
// Defining constants using define method
define("name", "value"); // It takes 2 parameters first one is constant variable
//name and second is value that we assigning to a contstant
?>