FireGeek21
Technical User
I am new to PHP and have been going through some tutorials. It seems fairly easy to learn. Immediately, I am having issues with what is displayed on the web. This is what is displayed:
Current date and time: " . date("r") . "
"; ?>
Here is my simple code I am using out of a tutorial. Is this a case of a bad tutorial or is there some syntax issue I need to tweak?
THANK YOU!!!
FireGeek
(currently using Crystal Reports XI with Lawson 9.01)
Current date and time: " . date("r") . "
"; ?>
Here is my simple code I am using out of a tutorial. Is this a case of a bad tutorial or is there some syntax issue I need to tweak?
Code:
<html>
<head>
<title>My first PHP document</title>
</head>
<body>
<?php
echo "<p>Current date and time: " . date("r") . "</p>";
?>
</body>
</html>
THANK YOU!!!
FireGeek
(currently using Crystal Reports XI with Lawson 9.01)