I uploaded a simple script to test, and was admonished by the server administrator who stated
"the <?php needs to be the FIRST line in the file for proper
operation on a Linux/Unix version of php when using the .php file
extension."
I have never heard of this or seen it before. So a page like this...
<html>
<head>
</head>
<body>
<?php
print "Hello, World!";
?>
</body>
</html>
Is not correct??? This is what I was told it should be changed to:
<?php
<html>
<head>
</head>
<body>
<?
print "Hello, World!";
?>
</body>
</html>
Could someone explain this to me???????
I really appreciate the help. Thanks for your time.