Log in

View Full Version : creating a hyperlink pulling in a field in postbit


attroll
03-03-2006, 03:20 PM
I want to include one of my fields in the postbit but I want to make it a hyperthread. Here what I tried and it would not work.
<a href="http://www.geocaching.com/profile/?u="$post['field9']">$post[field9]</a> (http://www.geocaching.com/profile/?u=&quot;$post['field9']&quot;>$post[field9]</a>)
Does anyone have any Ideas or suggestions? It will not work beause I have to many " in the line I think.

Princeton
03-03-2006, 04:18 PM
if it's within the postbit template it should be:
<a href="http://www.geocaching.com/profile/?u=$post[field9]">$post[field9]</a>

attroll
03-03-2006, 04:52 PM
if it's within the postbit template it should be:
<a href="http://www.geocaching.com/profile/?u=$post[field9]">$post[field9]</a>

Thanks Joe that work. I apreciate it.