Originally posted by another user
phpBB BBCode supports a number of ways of creating URIs (Uniform Resource Indicators) better known as URLs.
The first of these uses the [url=][/url] tag, whatever you type after the = sign will cause the contents of that tag to act as a URL. For example to link to phpBB.com you could use:
[url=
https://www.nextgenupdate.com/] Visit NGU![/url]
This would generate the following link,
You must login or register to view this content.! Please notice that the link opens in the same window or a new window depending on the users browser preferences.
If you want the URL itself displayed as the link you can do this by simply using:
[url=
https://www.nextgenupdate.com/forums/]NextGenUpdate - Glitches, Cheats, Reviews, Discussions for the Latest and Hottest Video Games[/url]
This would generate the following link,
You must login or register to view this content.
Additionally, phpBB features something called Magic Links, this will turn any syntactically correct URL into a link without you needing to specify any tags or even the leading [url]
https://.[/url] For example typing
You must login or register to view this content. into your message will automatically lead to
You must login or register to view this content. being output when you view the message.
The same thing applies equally to e-mail addresses, you can either specify an address explicitly for example:
[email]
[email protected][/email]
which will output [email]
[email protected][/email] or you can just type [email]
[email protected][/email] into your message and it will be automatically converted when you view.
As with all the BBCode tags you can wrap URLs around any of the other tags such as [img][/img] (see next entry), [b] [/b], etc. As with the formatting tags it is up to you to ensure the correct open and close order is following, for example:
Adding an image to a post
phpBB BBCode incorporates a tag for including images in your posts. Two very important things to remember when using this tag are: many users do not appreciate lots of images being shown in posts and secondly the image you display must already be available on the internet (it cannot exist only on your computer for example, unless you run a webserver!). To display an image you must surround the URL pointing to the image with [img][/img] tags. For example:
[img][url]
https://www.google.com/intl/en_ALL/images/logo.gif[/url][/img]
As noted in the URL section above you can wrap an image in a [url][/url] tag if you wish, e.g.
[url=
https://www.google.com/][/url][img]
https://www.google.com/intl/en_ALL/images/logo.gif [/img ][/url]
would generate:
You must login or register to view this content.
If not taken care with, it may lead your post to be deleted, so please take care, and be sensible.