2012-02-03 93 views
1

我有一個表格來計算一個人選擇一個值的次數。每個問題有3個答案,其值爲「自我」,「他人」或「社交」。無論哪個人最終都會得到回報。動態填充自定義字段(重力形式)

最終,我需要一個隱藏在用戶中的自定義帖子字段,並填充此結果。目前,它正在與表單提交後顯示:

return $confirmation 

我有http://pastie.org/3312298在我functions.php文件的底部粘貼。

我不太清楚如何在表單作爲條目提交給我們之前將結果存入框中。

www.webdesignsalemoregon.com/surveytest

是它在說謊現在

回答

1

你把這樣的一種方式複雜的路由。

給出了「自我」 <input name='self'>每個單選按鈕,併爲其餘

$self_answers = count($_POST['self']); 
$others_answers = count($_POST['others']); 
$social_answers = count($_POST['social']); 

$max = max($self_answers, $others_answers, $social_answers) ; 

if($max == $self_answers) { 
    $greatest = "self"; 
} else if($max == $others_answers) { 
    $greatest = "others"; 
} else { 
    $greatest = "social"; 
} 
+0

的代碼我有在那裏是由重力給我的表單開發人員做同樣的,和它的作品(曲或不)。 我只需要獲取計算值,以便在表單提交給我們之前預先填充自定義字段 – Xhynk 2012-02-04 00:12:06