I need to make my php output write static html files in a file daily. How do I do that? I am new to php so any advice would be great.
The site I coded in php is http://www.rrsportsintl.com Every page is a php page but is displayed as /shop/united_cutlery/ instead of /shop.php?cat=united_cutlery.
You can use a cache system. In the begining of your script, you check if the cache file is still valid (one day as you propose), if yes you simply show it (static), if not you reload the page dynamicly and then save the output to the cache page.