Aug 18th, 2015, 11:09 AM
I've installed the module, and can configure the rules that I'd like to execute on submission. Everything seems to be fine from the UI. Using the code samples, I thought I'd done everything correctly, but I think I'm missing something.
Wouldn't I see the output from the two echo commands and (If I've got a field in the table that's Client1_Total_Sell), shouldn't the table field have a value set?
<?php
echo "Hello";
echo var_dump($Client1_Sell_Amount1);
$_POST["Client1_Total_Sell"] = "999999";
?>
What am I missing, it has to be something obvious?
Wouldn't I see the output from the two echo commands and (If I've got a field in the table that's Client1_Total_Sell), shouldn't the table field have a value set?
<?php
echo "Hello";
echo var_dump($Client1_Sell_Amount1);
$_POST["Client1_Total_Sell"] = "999999";
?>
What am I missing, it has to be something obvious?