• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

how does howstuffworks.com archive its articles

KahunaHube

Senior member
if you go to http://www.howstuffworks.com/ and look at the articles, you will notice how they file away their articles. Does anyone know what sort of language they use to do this? i know that they did not hard code everything into .html files.

And if someone does know, can they please explain how they used such a language while archiving the files with a .html ending?

hope i didnt confuse anyone 🙂
thanks!
 
Well, the webserver is running Solaris 8 with Apache/PHP. So, I will go on a limb and say they are using PHP to do the archiving. Just because the files have the .htm extension doesn't necessary mean they are HTML codes. You can configure Apache to let the PHP engine to parse any file extensions you wish. I guess they have the PHP engine parse all .htm files as well.
 
With PHP and any other programming languages, the query string is automatically parsed by their respective engine. IE: in PHP, you can access the variable specified by the query string thru $_GET['variablename'].

 
Back
Top