form rendering commands, which one?

The prefered method is "form_tag", eg:

<% form_tag :action => "create" do %>   My pretty form! <% end %>

See http://www.loudthinking.com/arc/000601.html.

Thanks for the input. From the article it does mention that the start_form_tag, end_form_tag is deprecated, but no real comparison between the form_tag and form_for. I am assuming they are both acceptable...