Lol - okey - isnt everybody using IE?
yes - F5 for refreshing the page. I have a form on the page that submit to itself like this:
<script language="JavaScript">
function MySubmit()
{
document.forum.MAction.value = 'Spara';
document.forum.submit();
}
</script>
<?
$MAction = $HTTP_POST_VARS[MAction];
$MTitle = $HTTP_POST_VARS[MTitle];
$MText = $HTTP_POST_VARS[MText];
if ($MAction == "Save")
{
//Saving the post.
//...
}
?>
<form method=post name=forum action="<?echo $PHP_SELF;?>">
<input type=hidden name=MAction value="">
<input name=MTitle maxlength=40>
<textarea name=MText maxlength=255</textarea>
<img onclick=\"MySubmit('Save')\" src=\"b_save.jpg\">
</form>
But when I refresh the page it saves the same again.
Yes it seems that 127 is something about a corrupt table - ill post that question somewhere else...
Thankyou!