Simple Flake
The simplest flake you can make consists only of HTML code. Create a file called Weather.html that contains the following:
<html>
<body> Weather will go here. </body>
</html>
Upload the flake to any web server.
Add the flake by going to http://www.pageflakes.com/developers and entering the URL of your flake in the "Test your flake" field.
Tip: The Pageflakes framework caches flakes that have a .html extension, making it difficult to debug flakes when you repeatedly upload the same flake. To prevent this, change your flake’s filename extension to .php (or another extension associated with a dynamic web scripting language supported by your web server, such as .jsp or .aspx). Giving your flake an extension other than .html prevents the Pageflakes server from caching your flake. Change your flake’s extension back to .html when your flake is completed to take advantage of caching, unless your flake needs to take advantage of server-side scripting.

