Images

FUDcode allows the user to embed images inside their messages using the [img] tag, since embedding of many images can potentially slow down the page the administrator may choose to set a limit on how many messages the users may include inside their messages by using the Maximum Number of Images option.

The most basic way to embed an image is to use the simple [img] tag in the following fashion:

ex. 
	[img]http://mydomain.com/myimage.jpg[/img] 
which will result in 
	<img src="http://mydomain.com/myimage.jpg" alt="http://mydomain.com/myimage.jpg"gt; 
HTML being generated.

If the user wishes to specify their own description for the image, which will be placed inside the 'alt' parameter of the HTML's image tag they may use [img] tag in the following fashion:

ex. 
	[img=http://mydomain.com/myimage.jpg]My Image[/img] 
which will result in 
	<img src="http://mydomain.com/myimage.jpg" alt="My Image"gt; 
HTML being generated.