Committing all the common code changes so that I can begin working locally.

git-svn-id: http://svn.cleancode.org/svn/pickles@4 4d10bc64-7434-11dc-a737-d2d0f8310089
This commit is contained in:
Josh Sherman 2007-11-09 01:27:41 +00:00
parent dcd492b443
commit d46d34d67a
88 changed files with 9960 additions and 25 deletions

28
classes/Form.php Normal file
View file

@ -0,0 +1,28 @@
<?php
class Form {
private function __construct() { }
public static function displayContact() {
?>
<form action="">
Name:<br />
Email:<br />
Subject:<br />
Message:<br />
</form>
<?php
return true;
}
public static function processContact() {
}
}
?>