Flash server time?
- Started
- Last post
- 5 Responses
- YourClient
Is there a way to circunvent Flash from only displaying local/client time, and display other time zones, like the server side time?
- ********0
check the documentation on Macromedia.com search for Server Communication MX.
- ********0
http://www.macromedia.com/softwa… or try the forums here http://www.macromedia.com/suppor…
- YourClient0
Thanks
- unfittoprint0
retrieve server time using PHP. Before the html tags put this inside PHP syntax notation somethin like:
$servertime = time();
then you'll be able to send your variable within your movie's HTML paramaters:
*attn: I can't use bigger, smaller symbols in NT, therefore the brackets...
[PARAM NAME=movie
VALUE="myTime.swf?flashTime=[php print $servertime; php]"]and for theother browsers
[EMBED src="myTime.swf?flashTime=[php print $servertime; php]"]
you'll then be able to use the server time variable...
- YourClient0
Cool, thanks man!