Google lets me down once again
Coming from a PHP background I know I can take submitted form data, mix
it, mash it and put it together in very odd ways. In other words do
this.
$title = “My Title”
$sub_title = “My Sub Title”
$full_title = $title . “-” . $sub_table
And submit $full_title to the database. I have yet to find a solution
for this in Rails - I know there is one but being new to all this I am
probably just missing it. Basically I want to take form data - mash it
together and then submit it to the database.
Does this go in def create? If not where. Thanks.
AndrewM