mikellogg
05-19-2005, 03:32 PM
I have a special form for posting that I have used for a single forum and everything has worked well. Now that I'm adding a separate form with "elseif" it doesn't work. What have I done wrong?
Working code:
<if condition="$forumid == 14">
<a href="form3.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
<else />
<a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
</if>
Code that doesn't work:
<if condition="$forumid == 14">
<a href="form3.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
<elseif condition="$forumid == 35" />
<a href="form35.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
<else />
<a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
</if>
For some reason, the "New Thread" button appears twice in forum 14. I'm sure that's a good clue as to the answer, but I can't figure it out. Sorry for my lack of understanding of PHP, if this really is PHP...
Thanks. I appreciate the help.
Working code:
<if condition="$forumid == 14">
<a href="form3.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
<else />
<a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
</if>
Code that doesn't work:
<if condition="$forumid == 14">
<a href="form3.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
<elseif condition="$forumid == 35" />
<a href="form35.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
<img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
<else />
<a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /> <b>Ask a Question</b></a>
</if>
For some reason, the "New Thread" button appears twice in forum 14. I'm sure that's a good clue as to the answer, but I can't figure it out. Sorry for my lack of understanding of PHP, if this really is PHP...
Thanks. I appreciate the help.