Hello,
for my upcoming website based on Postnuke i would like to use flash as the user login block.
Basically i would need to print this codein Flash:
<?php
if(!pnUserLoggedIn()){
?>
<form action="user.php" method="post">Username<input type="text" name="uname" size="12" maxlength="20">
Password<input type="password" name="pass" size="12" maxlength="20"><input type="checkbox" value="1" name="rememberme" />
<input type="hidden" name="module" value="NS-User" /><input type="hidden" name="op" value="login" />
<input type="hidden" name="url" value="/index.php" /><input type="submit" value="Login" />
</form>
<a href="user.php?op=lostpassscreen&module=NS-LostPassword">Log in Problems?</a><br> New User? <a href="user.php">Sign Up!</a>
<?php
}
?>
any idea of how to make it happen?