Cache issue
Posted: Wed Oct 24, 2007 12:33 pm
Hello all,
I have a backend app which allows my client to add and update products.
For some reason, after my client adds a product, then searches for that product it does not show up on the page. But when I test it, I never have that issue.
Is this a browser issue on the users end? the only cache code I have in each of php pages is this:
Would that code cause such an issue?
Thanks
Keith
I have a backend app which allows my client to add and update products.
For some reason, after my client adds a product, then searches for that product it does not show up on the page. But when I test it, I never have that issue.
Is this a browser issue on the users end? the only cache code I have in each of php pages is this:
Code: Select all
session_cache_limiter('private_no_expire');
session_cache_expire(60);
session_start();Thanks
Keith