Jump to content

DanDewey

New Members
  • Posts

    4
  • Joined

  • Last visited

DanDewey's Achievements

Newbie

Newbie (1/5)

0

Reputation

1

Community Answers

  1. So I've managed to solve myself by changing functions 2-5 to the following and now all functions are working independently add_action("gform_after_submission_123", "CC", 10, 2); function CC($entry, $form){ $con=mysqli_connect(""); $CCQty = $entry["13"]; if ($CCQty > 0){ $Name = $entry["1"]; $Service = "Fixed-Congestion Charge"; $CCRate = $entry["16"]; $CCQty = $entry["13"]; mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$CCRate','$CCQty')"); } }
  2. Hi All, I'm doing a follow-up post from previous help here if possible. Using WordPress/Gravity Forms I'm entering 1 line of data into a MySQL database for each of the 4 functions, the first function runs perfectly but functions 2-4 run on an IF query and the issue I'm seeing is that all three functions will trigger if only one of them meet criteria they are not working independently of each other. Ideally, it should simply be Fucntion1(beta_pay) triggers every time, and then fucntions2-5 trigger independently only if they meet the criteria on their own and not a one for all scenario. Any input would be great I've tried various scenarios Function 1 is beta_pay which runs automatically every time which is correct add_action("gform_after_submission_123", "beta_pay", 10, 2); function beta_pay($entry, $form){ $Name = $entry["1"]; $Service = $entry["3"]; $Value = $entry["4"]; $Qty = $entry["11"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$Value','$Qty')"); } Function 2 is Mileage which runs on an IF statement and works fine as long as Functions 2-5 meet requirements otherwise it posts data regardless add_action("gform_after_submission_123", "Mileage", 10, 2); function Mileage($entry, $form){ $MileageQty = $entry["5"]; if ($MileageQty = 0){ return; } $Name = $entry["1"]; $Service = "Fixed-Milage"; $MileageRate = $entry["10"]; $MileageQty = $entry["5"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$MileageRate','$MileageQty')"); } Function 3 is Away which runs on an IF statement and works fine as long as Functions 2-5 meet requirements otherwise it posts data regardless add_action("gform_after_submission_123", "Away", 10, 2); function Away($entry, $form){ $AwayQty = $entry["20"]; if ($AwayQty = 0){ return; } $Name = $entry["1"]; $Service = "Fixed-Away Payment"; $AwayRate = $entry["19"]; $AwayQty = $entry["20"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$AwayRate','$AwayQty')"); } Function 4 is CC which runs on an IF statement and works fine as long as Functions 2-5 meet requirements otherwise it posts data regardless add_action("gform_after_submission_123", "CC", 10, 2); function CC($entry, $form){ $CCQty = $entry["13"]; if ($CCQty = 0){ return; } $Name = $entry["1"]; $Service = "Fixed-Congestion Charge"; $CCRate = $entry["16"]; $CCQty = $entry["13"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$CCRate','$CCQty')"); } Function 5 is Toll which runs on an IF statement and works fine as long as Functions 2-5 meet requirements otherwise it posts data regardless add_action("gform_after_submission_123", "Toll", 10, 2); function Toll($entry, $form){ $TollQty = $entry["15"]; if ($TollQty = 0){ return; } $Name = $entry["1"]; $Service = "Fixed-Toll Crossing"; $TollRate = $entry["17"]; $TollQty = $entry["15"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$TollRate','$TollQty')"); }
  3. Absolute legend, I was trying to run each as a seperate function but got nowhere the Return piece makes so much sense thank you
  4. Hi There, I'm new to php but using WordPress and gravity forms I'm learning. I'm struggling to get a function working and wondered if anyone can point me in the right direction or at least explain the solution in a more basic way, please. Currently, I have 3 functions named beta_pay, Mileage & CC which trigger 3 separate line entries from a gravity form submission into MySQL, what I am trying to do is combine the function into one or write at least a cleaner function that enables an IF control based on form entry so that a separate line is generated if criteria are met. I've tried adding an IF/Else statement to call them at the end of beta_pay but it just causes a critical error. Any input would be great and for reference, I've left mysql_connect("") blank to keep server settings secure. Thanks in advance Dan The concept is On submission run function beta_pay add_action("gform_after_submission_123", "beta_pay", 10, 2); function beta_pay($entry, $form){ $Name = $entry["1"]; $Service = $entry["3"]; $Value = $entry["4"]; $Qty = $entry["11"]; $MileageRate = $entry["10"]; $MileageQty = $entry["5"]; $CCRate = $entry["12"]; $CCQty = $entry["13"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$Value','$Qty')"); } Then If $MileageQTY > 0 run function Mileage as well if not then skip add_action("gform_after_submission_123", "Mileage", 10, 2); function Mileage($entry, $form){ $Name = $entry["1"]; $Service = "Fixed-Milage"; $MileageRate = $entry["10"]; $MileageQty = $entry["5"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$MileageRate','$MileageQty')"); } Then If $CCQTY > 0 run the function called CC as well if not skip add_action("gform_after_submission_123", "CC", 10, 2); function CC($entry, $form){ $Name = $entry["1"]; $Service = "Congestion Charge"; $CCRate = $entry["12"]; $CCQty = $entry["13"]; $con=mysqli_connect(""); mysqli_query($con,"INSERT INTO beta_pay (Name,Type,Value,Qty) VALUES ('$Name','$Service','$CCRate','$CCQty')"); }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.