Thread: helpdesk
View Single Post
  #6  
Old 10th February 2009, 10:25
hack346 hack346 is offline
Banned
 
Join Date: Mar 2008
Turkey
Posts: 80
Smile
find"
Code:
<form method="post" action="helpdesk.php">
<table border="0" align="center" cellpadding="5" cellspacing="0">
  <tr>
    <td align="right">&nbsp;<b>TITLE:</b></td>
    <td align="left"><input type="text" size="73" maxlength="60" name="title"></td>
  </tr>
<!--
  <tr>
    <td align="left" colspan="2"></td>
  </tr>
-->
  <tr>
    <td colspan="2"><?php textbbcode("msg", "msg_problem"); ?><!--<br>(<a href=tags.php class=altlink>BB</a> tags are <b>allowed</b>.)--></td>
  </tr>
  <tr>
    <td align="center" colspan="2"><input type="submit" value="Help me!" class="btn"></td>
  </tr>
</table>
</form>

replace with:

Code:
<form method="post" name="msg" action="helpdesk.php"><input type=hidden name=action value=report readonly='readonly' />
<table border="0" align="center" cellpadding="5" cellspacing="0" width="100%">
<tr><td class="ttable_col1">Title:</td><td align="left" class=ttable_col2><input type="text" style="width:100%" maxlength="60" name="title"></td></tr>
<tr><td class="ttable_col1">Body</td><td align="left" class=ttable_col2><?php textbbcode("msg", "msg_problem"); ?></td></tr>
<tr><td align="center" colspan="2"><input type="submit" value="Help me!"></td></tr>
</table>
</form>

must work 100%
Reply With Quote