05-06-2008, 05:10 PM
|
#4 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
Quote:
|
PHP is not case-sensitive, but it's a good habit calling functions as they are defined (lowercase, that is).
|
No?
PHP Code:
$szTestOne = "One, "; $sztestone = "Two, "; define("TESTTWO", "Three, "); define("testtwo", "Four.");
echo $szTestOne . $sztestone . TESTTWO . testtwo;
returns One, Two, Three, Four.
-m
|
|
|
|