Ciao ragazzi è possibile non fare scaricare nei file temporanei una pagina php ?
Grazie Zoe
Ciao ragazzi è possibile non fare scaricare nei file temporanei una pagina php ?
Grazie Zoe
Ti suggerisco di iniziare leggendo il manuale ufficiale:
http://www.php.net/header
sono alle prime armi ... non mi puoi aiutare ?
Dal manuale, la pagina linkata da filippo.toso
Example #2 Caching directives
PHP scripts often generate dynamic content that must not be cached by the client browser or any proxy caches between the server and the client browser. Many proxies and clients can be forced to disable caching with:
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
Nota: You may find that your pages aren't cached even if you don't output all of the headers above. There are a number of options that users may be able to set for their browser that change its default caching behavior. By sending the headers above, you should override any settings that may otherwise cause the output of your script to be cached.
Additionally, session_cache_limiter() and the session.cache_limiter configuration setting can be used to automatically generate the correct caching-related headers when sessions are being used.
grazie .... clasku ma come dicevo sopra sono alle prime armi e del tuo consiglio non ci ho capito niente...
Devi semplicemente scrivere uno di questi due:
come prima cosa nel tuo codice... finitoCodice PHP:
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>![]()
Ti ringrazio clasku, ho provato ma non mi funziona, probabilmente la mia incapacità va oltre le mie aspettative .... mi sa che rinuncerò, grazie comunque, spero sia stato di aiuto a qualcun'altro.
ciao ZOE
Beh, se dici anche che errore ti dà magari possiamo darti una mano...
Vedi te![]()