En resumen, tengo dos columna en mi tabla "datos":
Código HTML:
----------------------------------------- status - fechafin ---------------------------------------- A 2010-02-22 03:30:42 ----------------------------------------------
lo que pretendo es que este query me cambie el (status='P') cuando fechafin sea menor a la fecha actual.
construi este query, pero no encuentro que funcione

Código PHP:
mysql_query ("UPDATE LOW_PRIORITY datos SET status='P' where fechafin<CURDATE()") or die('error mysql');