I have two php3 scripts.
index.php3 that has a bunch of html in it and links to pages.
redirect.php3 which just redirects the user to a page I specify.
I have a html link in index.php3
<a href="redirect.php3?action=goto&url=http://www.yahoo.com">yahoo.com</a>
and
<a href="redirect.php3?action=goto&url=http://www.excite.com">excite.com</a>
I want the redirect script to redirect the user to whatever the string says
anything after ...url="('domain.com')" will redirect the user to that page.
Can someone do this for me, i'm knew to php