Dan Martin
Average Member
  
USA
528 Posts |
Posted - 16 August 2000 : 12:48:03
|
A feature supported by EZboard's (www.ezboard.com) that I like alot is the ability to include a URL to a 60x60 image (presumably a picture of yourself) in the margin.
This adds character and personality to their message boards. Additionally, on boards used by small groups of users who know each other(company message boards, etc) this provides immediate recognition.
The Snitz board I administer, I changed code to allow for this. It's pretty simple stuff.
Basically, adding the field to the Member database, and then to the Profile Form. Then, the topic.asp has something similar to:
<% if rs("M_IMAGE_URL") <> " " then %> <br><img src="<% =rs("M_IMAGE_URL")%>" height=60 width=60> <% end if %>
Also, the field has to be added to all the queries, etc etc.
|
|