Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Help Me Please

Quote Reply
Help Me Please
I have a link owner that is able to add his price when he creates his links.

This Is want i want to display to the user.

<%LinkOwnerPrice%>+<%MyPrice%>=<%DisplayPrice%>

I have setup a colum in Links for <%LinkOwnerPrice%>

Where do i setup the other 2 variables? Do I create a Global? What Code do I use in global?

Someone please Help, I am A Newbie
Quote Reply
Re: [netnow21] Help Me Please In reply to
If MyPrice is a constant then you can just set it in the template:

<%set MyPrice = '10'%>

Otherwise, you'll need another field in the table.

Then you may just be able to use this in version 3:

<%set DisplayPrice = $LinkOwnerPrice + $MyPrice%>
Quote Reply
Re: [afinlr] Help Me Please In reply to
Thank you SO Much! Wink