** so here is my template... **
Is there any code that you added in that template at that link? I would have liked to
see the results of what you tried to do in order to try to help you correct it.
I come here to the forums to try to help others learn to do things for them self, not to
do the work for them. I am available for hire for custom programming, if needed.
But anyway, see if this works for you.
Change the line:
<% &getEvents( { 'range'=>'month' , 'month'=>$MONTH } ); %>
to:
<%
&getEvents( { 'range'=>'month' , 'month'=>$MONTH } );
$db = $main:: DBEvents;
$fields = &main:: DBGetFieldsInDisplayOrder($db);
%>
(
Watch for spaces after the "::" above, there should be NONE in the final code added to the template)
and then insert the following code:
code:
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<%
foreach (@$fields) {
next unless ($db->{'properties'}->{$_}->{'display_details'});
%>
<TR><TD ALIGN="right" VALIGN="top"><SPAN CLASS="text"><B><%=$db->{'properties'}->{$_}->{'name'}%>: </B></SPAN></TD><TD ALIGN="left" VALIGN="top"><SPAN CLASS="text"><%=$EVENT->{details}->{$_}%></SPAN></TD></TR>
<% } %>
</TABLE>
after the <%FOREACH EVENT%> tag where you want the individual field information to be displayed.
Dan O.
------------------