Quote:
Originally posted by irn-bru
How can I make the empty pm box link the
same as the move, forward, and deleted, box.
|
Not easily achivable. Altough this code:
PHP Code:
<FORM METHOD="LINK" ACTION="private.php?s=$session[sessionhash]&action=logicdelete">
<INPUT TYPE="submit" VALUE="Empty PM box">
</FORM>
does what you want, you can NOT insert it by replacing line:
PHP Code:
<a href="private.php?s=$session[sessionhash]&action=logicdelete">Empty PM box</a>
That's because this section is already inside an HTML FORM tag and you cant insert form tags inside eachother.
A few possible solutions:
1- Leave it as it is.

2- Use the code above but change the location of Empty PM BOX button. Insert the code outside an existing form (That is, it shouldnt be somewhere between <form .....> </form> tags)
3- Instead of a form button design, use a image for this button. You can make a trick and design an image that exactly looks like an HTML button for example..
Logician