Revision: 2630
Updated Code
at March 16, 2007 14:20 by purpleraison
Updated Code
<?php class dbControls { var $title = ''; var $content = ''; var $date = ''; function insertArticle() { $this->title = $_POST['title']; $this->content = $_POST['content']; } } ?>
Revision: 2629
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 16, 2007 14:19 by purpleraison
Initial Code
<?php class dbControls { var $title = ''; var $content = ''; var $date = ''; function insertArticle() { $this->title = $_POST['title']; $this->content = $_POST['content']; $this->date = time(); } } ?>
Initial URL
Initial Description
just doodled this down, and haven't tried it yet to see what errors it generates once it's done.
Initial Title
test insert class?
Initial Tags
Initial Language
PHP