Geez folks it's been a while since I was here... but I'm learning new stuff.
Right now I'm trying to work with Flash & php combined.
But I have a very basic problem with IE... when I hit reload... it reloads the page but not the flash... hmmm why?? is there a way around this??
Flash reload?
Moderator: General Moderators
Flash & php
Could you put some links to websites where i can find tutorials and articals how to combine Flash and PHP.
Flash and reloading
I have a similar problem with my page. I have a flash intro page, which then redirects to the main php page that contains another flash object.
When I load the page for the first time, everything works fine. As soon as I clear the cache and then hit reload, wham, it never loads the new page. It just hangs on the intro page while trying to load the redirected page.
I think this may not be a php problem but something else. I am slowly picking it apart and will post anything I find.
When I load the page for the first time, everything works fine. As soon as I clear the cache and then hit reload, wham, it never loads the new page. It just hangs on the intro page while trying to load the redirected page.
I think this may not be a php problem but something else. I am slowly picking it apart and will post anything I find.
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
...
Try adding a header that makes sure that the browser doesnt cache the flash, or make sure that the page has some sort of an expire. Something like:
Code: Select all
<head>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
</head>