Log in

View Full Version : If No post...


Blindchild02
10-12-2005, 03:08 PM
Im coding my own 'last post' box

and this is what i have..


<table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#d8e1e6">
<tr>
<td><font color="#5d6e76" size="1" face="Tahoma"><strong>Last Post:</strong>
&nbsp;&nbsp;<a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$lastpostinfo[lastthreadid]">$lastpostinfo[lastthread]</a> @ $lastpostinfo[lastposttime]</font></td>
</tr>
</table>



and it works.

but when there isnt a post in that forum, the variables just dont show up.
whats the <if> statement for if there isnt a post.. it just says never?

nexialys
10-12-2005, 03:37 PM
<if condition="$lastpostinfo[lastthreadid]"><table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#d8e1e6">
<tr>
<td><font color="#5d6e76" size="1" face="Tahoma"><strong>Last Post:</strong>
&nbsp;&nbsp;<a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$lastpostinfo[lastthreadid]">$lastpostinfo[lastthread]</a> @ $lastpostinfo[lastposttime]</font></td>
</tr>
</table></if>
the element "$lastpostinfo[lastthreadid]" is supposed to be empty when there is no new post... so we display the block IF it is not empty!

Blindchild02
10-12-2005, 04:40 PM
instead of hiding the table when there's no posts, could i get it to say never?

and thanks for the help

Chris M
10-12-2005, 05:29 PM
Replace the above code with:
<if condition="$lastpostinfo[lastthreadid]"><table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#d8e1e6">
<tr>
<td><font color="#5d6e76" size="1" face="Tahoma"><strong>Last Post:</strong>
&nbsp;&nbsp;<a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$lastpostinfo[lastthreadid]">$lastpostinfo[lastthread]</a> @ $lastpostinfo[lastposttime]</font></td>
</tr>
</table><else /><table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#d8e1e6">
<tr>
<td><font color="#5d6e76" size="1" face="Tahoma"><strong>Last Post:</strong>
&nbsp;&nbsp; Never</font></td>
</tr>
</table></if>
:)

Chris

Blindchild02
10-12-2005, 05:30 PM
thanks to you both :D !!

Chris M
10-12-2005, 05:31 PM
I just noticed a type error on my part :)

I've updated my post :)

Chris