in reply to A Better Way To Get Days Since Monday of Last Week

If I understand your question, I think the following would give you # of days since Monday of last week.
@t=localtime; print $t[6]+6;
For # of Days since last Friday it'd be:
@t=localtime; print $t[6]+2;

-jbWare