Parent child relations

Normally, one would use:

<% form_for :url => {:action => "create_reply", :id => @posts} %>

This generates something like:

<form method="post" action="/controller/create_reply/3">

So, the actual post id is buried in the url to which you will issue your POST request.

--steve

Keith Lancaster-2 wrote: