2
我是新來的drupal_mail功能,需要幫助。代碼我有工作,但我想擺脫$ _POST參數來限制我的安全漏洞。
我不知道如何在不使用$ _POST參數的情況下獲取發佈的變量,理想情況下,我希望單個每個參數都可以放置一個自定義標籤。
任何幫助將不勝感激。
function revenue_calculations() {
$block = array();
$a = $b = $c = '';
$errors = array();
$output = '';
if (isset($_POST)) {
if (isset($_POST['a'])) $a = (int) round($_POST['a']);
if (isset($_POST['b'])) $b = (int) round($_POST['b']);
if (isset($_POST['c'])) $c = (int) round($_POST['c']);
if (!empty($a) && !empty($b)&& !empty($c)) {
$calc1 = $a * ($b/100);
$calc2 = $calc1 * ($c/100);
$calc3 = $calc2 * .65 * .99;
$display = '$'.number_format($calc3,2);
////// throw in a drupal_mail send, with the form details //////
function calculator_mail($key, &$message, $params) {
switch ($key) {
case 'calculation':
$message['subject'] = t('CALCULATION DONE');
foreach ($params as $key=>$value) {
$message['body'][] = $key.': '.check_plain($value);
}
break;
}
}
drupal_mail('calculator', 'calculation', '[email protected]', language_default(), $_POST);
$output = "Your result is $display;
}
}
$output .= revenue_calculator();
return $output;
}
感謝您的回覆。我不太清楚如何在我的具體情況下實現它 - 我對JSON數據並不熟悉 - 但我會研究這一點。 – 2013-05-14 00:52:17