I've got a MySQL database that I'm accessing using PHPMyAdmin. I've updated a few records in one of the tables, but the updated content isn't showing up on my web page. I've confirmed that this is occurring with a couple records, in fact. (I'm using PHP to set up a query, and submit and process that query through MySQL.) I've done a few COMMIT; commands in the SQL Query window, but that didn't help. If I go to edit that record again, the content is the updated version, but my web page still shows the old content. I'd appreciate any ideas. I fear I'm missing something simple. Thanks!
You may be seeing cached content in your browser. Try doing a forced refresh of the page, which is Ctrl-F5 for IE and Firefox. If that doesn't work and you're using IE, you can clear all your locally cached content using the Tools menu, Internet Options/General/Browsing History/Settings. I hope this helps. Steve
Hmm. I'm out of ideas. Silly question, but are you sure that the web page is getting generated dynamically from the database each time? There could possibly be some kind of server-side caching going on.
Server-side caching would be a deliberate feature of the framework you're using. If your site is based on a CMS, then a caching system may be built in. One that I know that has caching is Typo3. If you built the site yourself and didn't build in caching, then you don't have it unless you used some libraries that had it built in. Sorry if this is a little vague, but there are many ways that caching could be implemented.