[ create a new paste ] login | about

Link: http://codepad.org/dmVgeIM6    [ raw code | output | fork ]

upwhere - PHP, pasted on Jan 5:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
define("hello", "Hi There.");
echo hello; // outputs "Hi There."
echo "\n";
echo Hello; // outputs "Hello" and issues a notice in the browser.
echo "\n";

//To allow case insensitive, set the third parameter to be true.
define("greeting", "How are you?", true);
echo GREETING; // outputs "How are you?"
echo "\n";
echo Greeting; // outputs "How are you?."

?>


Output:
1
2
3
4
Hi There.
Hello
How are you?
How are you?


Create a new paste based on this one


Comments: