sn0n.com

Blog Archive @ http://archive.sn0n.com
Website Idea: hosted .sqlite databases
./anon/file or ./user/file (to download)
./anon/web-### or /user/web-### (WebView, Spreadsheet / GUI style)
(optional registration)
Each page password protected optional (sqlite3)
XML Export Options

blog structure:
Posts: 
    ID (key)
    Title
    Body
    PublishedDate
    CategoryID
Comments:
    ID (key)
    Author
    Email
    Website
    Body
    PublishedDate
    PostID (posts: key)

My first php script,
Input:
<?php
 $test = array('1', '2', '3', '4',);
 shuffle($test);
 foreach ($test as $text) {
  echo "$text \r\n";
 }
?>
Output:
1 
2 
4 
3