UBB.Dev
Posted By: scroungr How to put links into a pal box.. - 03/13/2004 7:03 AM
this question comes up alot basically just put this into the palbox where it says admin add your stuff here

to add a link that opens up another page

echo "<a onclick="javascript:window.open('https://ubbdev.com/forum/categories.php?Cat=','_blank');" href="javascript:void(0);">Threadsdev</a>";

and to add a link that opens the email client with a few fields already filled in....

echo "<a href="mailto:[email protected][email protected]&subject=HELP!!!!">Threadsdev</a>";

basically just always remember to escape out the interior qoute marks so that the parser doesn't chew on them.
Posted By: scroungr Re: How to put links into a pal box.. - 03/13/2004 7:46 AM
echo "You can see my oregon fishing guide web site at ";
echo "<a onclick="javascript:window.open('http://www.qualityfishingadventures.com','_blank');" href="javascript:void(0);">Qualityfishingadventures.com</a>";
echo "<br>";
echo "If your looking for an Oregon fishing guide to guide you for Salmon, Steelhead or Sturgeon, send me an email at ";
echo "<a href="mailto:[email protected]?subject= Oregon fishing guide to guide you for Salmon, Steelhead or Sturgeon">QualityFishing</a>";
© UBB.Developers