I want to make a pm preview system for WML lava script. By using it users can see their pm's preview before sending. To make it I used WML switching system. I made another card after "readpm action" at inbox.php . I made it successfully but problem is that although I put the pmtext under parsepm() function but in the pm preview page smilies, bbcode n pmcard isn't working! It would be greateful if any coder can say on how to work smilies/bbcode/pmcard in the pm preview page. By hook or by crook I want to do this. So tell me any method. Thanks.
The code that I have used is below:
The code that I have used is below:
Code:
else if($action=="readpm")
{
echo "<card id=\"main\" title=\"Read PM\">";
.............................................................
..............................................................
////switching CARD 2
echo "<card id=\"c2\" title=\"Preview Message\">";
echo "<p align=\"center\" mode=\"wrap\"><small>";
echo "<b>Your PM Preview:</b><br/>";
$mntxt = "$(pmtext)";
echo parsepm($mntxt);
echo "<br/><a href=\"index.php?action=main&sid=$sid\">Home</a>";
echo "</small>";
echo "</p>";
echo "</card>";
echo "</wml>";
exit();
}
Comment