PDA

View Full Version : What about direct mysql-changes?


Kenneth Lund
06-05-2005, 06:52 AM
If I update a page, it's status is changed, so that the spiders will recognize it as "changed since last" and update (hopefully) the specific search engine accordingly.

But what about pages with content, fetched from a mysql-php-database? When changing content directly in mysql......is the status of the page, that uses this content, also changed??? :confused:

DaveN
06-05-2005, 03:28 PM
use the the server side header in php in store a date to the date_new var

header("Last-Modified: $date_new")

DaveN