easy question of the day...

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jhilden
Forum Newbie
Posts: 4
Joined: Tue Mar 15, 2005 3:50 pm

easy question of the day...

Post by jhilden »

Hi everyone, this out should get answered in about 10 seconds...

I want to link to an external site in a new window, here is my code:

Code: Select all

echo &quote;<td><a target='_blank' href='www.dotphoto.com/go.asp?l=$Dotphoto_Name'>my dotphoto site</a>&quote;;
The link gets created but the it tries to redirect to "http://www.hosted.jedijay.net/photoalbu ... asp?l=user"

(hosted.jedijay.net/photoalbum being my website of course)

So how the heck can I remove that header portion?

Thanks all
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

you can fix it by adding http:// to the url's beginning.
jhilden
Forum Newbie
Posts: 4
Joined: Tue Mar 15, 2005 3:50 pm

Post by jhilden »

thanks, I knew it would be something stupid and simple like that
Post Reply