Hi freddydoesphp,
Appreciate your response.
I put the pHp code into the page but all I got back when I loaded the page was a thin line where the "Page Update" should have been.
Freedom2Surf has PHP 4 version 4.0.3pl1 installed.
I tried both the scripts you suggested for PHP4 and PHP3. This is the script I included it in.
For PHP 4
Code:
<CENTER>
<!-- BEGIN MID TABLE -- Update -->
<TABLE width="400" border="0" cellpadding="0" cellspacing="0">
<TR>
<td COLSPAN="5" ALIGN="center" BGCOLOR="#A37951">
<?="This Page last updated ".date("m/d/Y g:i:s", filemtime($SCRIPT_FILENAME))?>
</td>
</TR>
<TR>
<td COLSPAN="5" ALIGN="center" HEIGHT="3"></td>
</TR>
</TABLE>
<!-- BEGIN MID TABLE -- Update -->
</CENTER>
For PHP 3
Code:
<CENTER>
<!-- BEGIN MID TABLE -- Update -->
<TABLE width="400" border="0" cellpadding="0" cellspacing="0">
<TR>
<td COLSPAN="5" ALIGN="center" BGCOLOR="#A37951">
<?
print "This Page last updated ".date("m/d/Y g:i:s", filemtime($SCRIPT_FILENAME));
?>
</td>
</TR>
<TR>
<td COLSPAN="5" ALIGN="center" HEIGHT="3"></td>
</TR>
</TABLE>
<!-- BEGIN MID TABLE -- Update -->
</CENTER>
Any additional Help or Suggestions you can give me will be appreciated.
WP
Bookmarks