php development
// variable and constant is almost same but variable is changeable and constant unchangble $variable =”variable and constant “; $tag =”You Can use tag “; echo “<h1>$tag</h1>”; echo $variable; define (“CONSTANT”, ” constant store”); define (“AMAOUNT”, 100); echo CONSTANT; ECHO “<br>”; ECHO AMAOUNT; echo “for string and”. $variable; // echo is fast and most use, … Read more