static function save($request){ /*HACK ZONE*/ self::$request = $request; self::textEntry("Title", "title"); self::dropDown("Category", "category_id", "CategoryModel", "title", "id"); self::dropDown("Section", "section_id", "SectionModel", "title", "id"); self::dropDown("Location", "location_id", "LocationModel", "name", "id"); self::textEntry("Summary", "summary"); self::longEntry("Intro", "intro"); self::longEntry("Rules", "rules"); self::longEntry("Specification", "specification"); self::textEntry("Domain", "domain"); self::textEntry("Entry Fee", "entry_fee"); self::textEntry("Max participants in a group", "participants"); self::textEntry("1st Prize", "prize_first"); self::textEntry("2nd Prize", "prize_second"); self::textEntry("3rd Prize", "prize_third"); self::textEntry("Prize Info", "prize_info"); self::textEntry("Co-ordinator", "coordinator"); self::textEntry("Event Head", "event_head"); self::textEntry("Date", "date_elim"); self::textEntry("Date", "date_final"); self::textEntry("Image 1", "image_1"); self::textEntry("Image 2", "image_2"); self::textEntry("Image 3", "image_3"); $set = join(", ", self::$set); $sql = "UPDATE articles SET $set WHERE id='".$request["article"]."'"; $result = BaseModel::$database->query($sql); return; }/*HACK ZONE*/