All pastes #2076529 Raw Edit

Something

public text v1 · immutable
#2076529 ·published 2011-06-08 03:14 UTC
rendered paste body
        $album_title 		= $form->tinymce->title->value;
        $album_description	= $form->tinymce->description->value;

	db::build()
           ->update("items")
           ->set("title", $album_title)
           ->set("description", $album_description)
           ->where("id", "=", $album_id)
           ->execute();