Search Results

1
vote

How can I create a site in php and have it generate a static version?

One way to do this is to create the site in PHP as normal, and have a script actually grab the webpages (through HTTP - you can use wget or write another php script that just uses file() with URLs) …
1
vote

Looping out mysql data

I'm assuming that you want a list of the dates so that you can then do separate queries for each date's entries. Usually you would use a query like: SELECT DISTINCT date_field FROM …