sander-martijn wrote:
Yeah that's not exactly how webforms works - you can't create content that is then publically accessible - it would email and/or database the submissions and then an admin would have to go in and create the actual content type. Using cck to create a content type and allowing that role to create and edit would be the way to go for this.
Thank you both for writing. I got the CCK approach to work. I used a table type view and this:
$view = views_get_view('Volunteer_Activity'); return views_build_view('embed', $view, array(arg(1)), false, 15);
to show the table view in the user page.
Thanks!