Well, you don't do that with an anchor tag usually. There are two ways, one is to use a Metatag with a refresh entry, and the other is to throw a 302 header with the header command like so:
header("location: http://server.domain.com/url.html");
Note that a header 302 will NOT display a page, then go to another page, it will simply go straight to the other page, so may not be what you need. Note also that it has to be the very first thing to create any output on the page.
The meta refresh tag looks like this and goes inside the <HEAD></HEAD> tages:
<META HTTP-EQUIV=Refresh CONTENT="1; URL=http://unquietmind.com/tburger/totalitarian74.html">