21278 Posts in 5728 Topics by 2599 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 623 Views |
-
Adding data to a form post

1 February 2011 at 8:55pm
Hello,
I have a form, which allows users to create a 'listing' on the site. The form submits ok, and saves into my table, but I want to attached the member user id to the form post, and store it with the listing, so i know which listings below to which user
this is the function i'm using to take the data and save it
function doListingForm($data, $form) {
$submission = new ListingSubmission();
$form->saveInto($submission);
$submission->write();
Director::redirectBack();
}but I have no idea where to add the extra details.
I've tried "$data[UserID] = $CurrentMember.ID" but this didn't work, and a few other ideas failed too..
any help appreciated
-
Re: Adding data to a form post

1 February 2011 at 10:18pm
how about...
function doListingForm($data, $form) {
$submission = new ListingSubmission();
$form->saveInto($submission);
$submission->MemberID = Member::currentUserID();
$submission->write();
Director::redirectBack();
}(untested and assuming ListingSubmission $has_one Member)
| 623 Views | ||
|
Page:
1
|
Go to Top |


