[PHP] site last updated

2001-11-03 Thread oliver walkhoff
hi all i am looking for a simple way to find (and then display) the date of the last change to an entire web site. an example is in the footer on php.net: "Last updated: Sat Nov 3 13:10:40 2001 EST" thanks for your help oliver walkhoff -- PHP General Mailing List (http://www.ph

[PHP] Re: Am i crazy?

2001-11-04 Thread oliver walkhoff
> Did I forget everything in a few months? > if ($name='admin') { > header("Location: $MYPATH/admin.php"); > } try if ($name =='admin') { ('==' instead of '=', otherwise you are assigning 'admin' to $name) ! oliver -- PHP General Mailing List (http://w

[PHP] Re: Am i crazy?

2001-11-04 Thread oliver walkhoff
sorry, didn't receive the answers from martin and jack before... oliver Martin wrote: > Did I forget everything in a few months? > if ($name='admin') { > header("Location: $MYPATH/admin.php"); > } > > Doesn't. That is it doesn't redirect to whatever $MYPAT