bbcode application
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe exactly what it is you want.
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe exactly what it is you want.
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
- Galandas
- BBCoder III
- Posts: 133
- Joined: 07 Mar 2010, 00:08
- BBCodes: 35
- Favourite BBCode: player yahoo
- Favourite MOD: Mod Rey
- Location: italy
- Contact:
bbcode application
I'm making a bbcode, can include more than one URL ?
example
[play]{URL}{URL}{URL}[/play] and wrong way ..............put right?
example
[play]{URL}{URL}{URL}[/play] and wrong way ..............put right?
Re: bbcode application
You can place more URLs. But you have to number them, like this:Galandas wrote:I'm making a bbcode, can include more than one URL ?
example
[play]{URL}{URL}{URL}[/play] and wrong way ..............put right?
Code: Select all
{URL1},{URL2},{URL3}...
- Galandas
- BBCoder III
- Posts: 133
- Joined: 07 Mar 2010, 00:08
- BBCodes: 35
- Favourite BBCode: player yahoo
- Favourite MOD: Mod Rey
- Location: italy
- Contact:
Re: bbcode application
ok you have been very helpful, also can you tell me how to insert html right
I have tried but so wrong.
<a href="{URL1},{URL2},{URL3}"</a>
I have tried but so wrong.
<a href="{URL1},{URL2},{URL3}"</a>
Re: bbcode application
First tell me what are you trying to achieve using that code.
Then I can help you.
Then I can help you.
- Galandas
- BBCoder III
- Posts: 133
- Joined: 07 Mar 2010, 00:08
- BBCodes: 35
- Favourite BBCode: player yahoo
- Favourite MOD: Mod Rey
- Location: italy
- Contact:
Re: bbcode application
KukY13 » 12 Jul 2010, 12:21 wrote:First tell me what are you trying to achieve using that code.
Then I can help you.
I'm certainly trying to make a bbcode that allows me to put three links.
Re: bbcode application
How? So there is only one link, but when clicked on all 3 links open?Galandas » 12 Jul 2010, 12:28 wrote:I'm certainly trying to make a bbcode that allows me to put three links.
- Galandas
- BBCoder III
- Posts: 133
- Joined: 07 Mar 2010, 00:08
- BBCodes: 35
- Favourite BBCode: player yahoo
- Favourite MOD: Mod Rey
- Location: italy
- Contact:
Re: bbcode application
Last edited by Galandas on 12 Jul 2010, 12:46, edited 1 time in total.
Re: bbcode application
Why don't you just use multiple URL tags, like you do in the example?
About the code: Use 3 diffrent anchor tags. Like this:
Code: Select all
<a href="{URL1}">{TEXT1}</a>, <a href="{URL2}">{TEXT2}</a>, <a href="{URL3}">{TEXT3}</a>
Re: bbcode application
i don't see the point in creating a bbcode like this, it will take the same time to just use the standard url bbcode and insert the links manually! just like you did in a previous post!