Jump to content

Php Show Last Modified Date - Ultiama Modifcare A Site-Ului


Recommended Posts

Posted

180px-PHP-logo.svg.png

Cu ajutorul codului php de mai jos, puteti afisa pe site-ul/pagina dumneavoastra data ultimei modificari a acestuia/acesteia:

<?
//where the main page you want to display for modification
$last_modified = filemtime("thepageyouwant.php");
//print it all out
print("Page Last Edited");
print(date("m/j/y h:i", $last_modified));
?>[/code]

[b][color="#9932CC"]Explicatii:[/color][/b]

$last_modified = filemtime("page.php");- this tells the browser what page you want to monitor or show when changes were last made to it. (Replace "page.php" to the page you add the code to.)

//print it all out print("Page Last Edited");- tells the browser what to place in front of the date. (You may change "Page Last Edited" to whatever you'd like.)

print(date("m/j/y h:i", $last_modified));- prints or displays the date for which the page was last modified.

[color="#008000"][b]Exemplu:[/b][/color]

This page was last updated on 09/29/09 07:42

Succes :pct2:

Te-ai inregistrat? Ne-ar placea sa te prezinti.

Cum pot sustine forumul?
Cumpara de la eMag folosind acest link.
--------------------
oG2BN9d.gifse1WdXd.gifQG6MtmI.gifRHYjDzD.gifG5p1wui.gif

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.