I have a Flex application that uses a rich interface. The user can create data and have it instantly show up in a list of data that they have created. The data is stored in a MySQL database using HTTPService POST requests from the Flex application and PHP forms to handle the data on the server side. For sake of explanation, let's say the data is simply a question. In both Safari and Firefox, the data instantly shows up as it is supposed to as it is added to the database and then called to reload. However, when using IE the data IS added to the database, but it doesn't show up right away as it should. Sometimes it requires that the user empty the cache and other times they may need to quit IE and restart it. However, all times it IS added to the database. The PHP form uses a simple MySQL SELECT statement to get the data from the database.
Are there known issues with IE caching this data for a length of time? Is there any way to make it not do that?