Note: In PHP, you declare constants similar to how you declare variables except you drop the $.
Complete Example
Here is a complete example that demonstrates a few concepts (refer to comments in code):
#!/usr/local/bin/perl -w
print("Content-type: text/html\n\n");
print("");
print("");
print("");
#
#Variable are case sensitive.
#
$fullname = 'Mike Prestwood';
$FullName = 'Wes Peterson';
print "Perl vars are case sensitive: " + $FullName + "
";
$Age = 38;
$Weight = 162.4;
print "Your name is $fullname.
";
print "You are $Age and weigh $Weight.
";
#
#Now using quotes.
#
$fname = "Mike";
$lname = "Prestwood";
$fullname = $fname . $lname;
print $fullname . '
';
#
#Two literals too:
#
print "My name is " . "Mike.
";
#
#Long strings.
#
$MyMsg = "This is a long string and
unlike some other languages. PHP allows
you to put strings on multiple lines
like this.";
print $MyMsg;
print("");