programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

how to define constants in php

we can define constants

we can define constants using define () function

define("CONSTANT", "Hello");

we can use the constant like this

echo CONSTANT;

o/p : Hello