how do I spintax this?

Fwiffo

Power Member
Joined
Apr 7, 2010
Messages
562
Reaction score
327
let's say that I want to have one of 3 different urls written in line of text, but linked as well

would appear:

Code:
for more info, go to <a href="http://mydomain2.com">http://mydomain2.com/</a>

so how do I spin that?

if I do:

Code:
go to:<a href="{http://mydomain1.com|mydomain2.com|mydomain3.com}">{http://mydomain1.com|http://mydomain2.com|mydomain3.com}</a>

then I'm likely to have domain 2 in the text linked to domain 3, which I don't want...

any suggestions?
 
let's say that I want to have one of 3 different urls written in line of text, but linked as well

would appear:

Code:
for more info, go to <a href="http://mydomain2.com">http://mydomain2.com/</a>

so how do I spin that?

if I do:

Code:
go to:<a href="{http://mydomain1.com|mydomain2.com|mydomain3.com}">{http://mydomain1.com|http://mydomain2.com|mydomain3.com}</a>

then I'm likely to have domain 2 in the text linked to domain 3, which I don't want...

any suggestions?


go to:
<a href={"domain1">anchor1|"domain2">anchor2|"domain3>anchor3}</a>

?

maybe you should drink some more coffee or something
 
go to:
<a href={"domain1">anchor1|"domain2">anchor2|"domain3 >anchor3}</a>

?

maybe you should drink some more coffee or something
lol

yep coffee is the solution - saturday morning IM brain just wasn't working!

rep+thanks because I must be just goofy this morning to ask that.....
 
Back
Top