Hi All,
I need to have a Menu tag as "chat" howver to get into the chat from the main page I need to use the below form tag.
Any one got a clue how I do it?
<form name='frmChat' id='frmChat' action="chat/flashchat_osdate.php" method='get' target="new">
<input type="hidden" name='username' value="{$smarty.session.UserName}" />
<input type="hidden" name='whatIneed' value="{$smarty.session.whatIneed}" />
</form>
<a class="panellink" href="#" onclick="javascript:document.frmChat.submit(); return(false);">{lang mkey='chat'}</a>
Need form tag in menu system
Something like this:
You may need to ensure that the values are parsed correctly, this will mean changing the filename to .php and also maybe echoing the $smarty values
Code: Select all
aI("text=`<form name=frmChat id=frmChat action=chat/flashchat_osdate.php method=get target=new><input type=hidden name=username value='{$smarty.session.UserName}'><input type=hidden name=whatIneed value='{$smarty.session.whatIneed}'></form><a class=panellink href=# onclick='javascript:document.frmChat.submit();return(false);'>{lang mkey='chat'}</a>`;type=form");