This is for a guestbook.
The flash has a defaultplaceholder with the .swf file into which i am trying to load the php file itself in an empty movieclip called placeholder3.
Problem 1 solved:
_root.placeholder3.loadVariables("guestbook.php?lowlimit="+lowlimit+"&highlimit="+highlimit);
loads the file initially.
Problem2... how to update the file
loadVariablesNum("guestbook.php", 0, "POST"
;
updates the file on the server but does not immediately reload into the guest book but the updated file is loaded when the whole guestbook reloads.
_root.placeholder3.loadVariables("guestbook.php", "POST"
;
doesn't appear to work either.
Any help will be most appreciated
The flash has a defaultplaceholder with the .swf file into which i am trying to load the php file itself in an empty movieclip called placeholder3.
Problem 1 solved:
_root.placeholder3.loadVariables("guestbook.php?lowlimit="+lowlimit+"&highlimit="+highlimit);
loads the file initially.
Problem2... how to update the file
loadVariablesNum("guestbook.php", 0, "POST"
updates the file on the server but does not immediately reload into the guest book but the updated file is loaded when the whole guestbook reloads.
_root.placeholder3.loadVariables("guestbook.php", "POST"
doesn't appear to work either.
Any help will be most appreciated