How to create a multiple link for a single <a href> tag

Hi,

Can anyone help me how to do this…
Please…

If you can explain it a little more clearly (or provide examples), sure.

Example:

this is my idea hope it help.

link1=Preview Page
link2=insert page for the preview page

<a href=‘link1’ href=‘link2’>Go</a>

You can’t have a link go to two places, but you can have it go to a php script that redirects to the second page when it’s done doing whatever you need it to do.

yea i know but i don’t know how to create a script for the idea. i am new for in php so can you help me.
thnks.

I’m not sure exactly what you’re trying to accomplish, so it’s hard to offer advice.

<a href=‘link1’ >Go</a>

to take it to the PHP that does whatever link1 is supposed to do (but which doesn’t output any web page).

The at the end of that PHP use

header(location: link2);

to transfer control to link2.