Jump to content

CWT

New Members
  • Posts

    4
  • Joined

  • Last visited

CWT's Achievements

Newbie

Newbie (1/5)

0

Reputation

1

Community Answers

  1. I have decided to pursue a different option utilizing Session Variables.
  2. @cyberRobot Not very to be honest but thank you for suggestion I will explore that option.
  3. Error handling is taken care of by my RAD. I am merely seeking a derivation of the above to handle more than one value.
  4. I use a RAD called PHPRunner to build Database Applications. One of the snippets of code I use a lot is to insert a Field Value from a Master Table into an equivalent Field in a Child Table as a "Before Add Event", is as follows: - global $dal; $tblDetail = $dal->Table("tblUserRequests"); $tblDetail->Value["ID"] = $data["ID"]; $tblDetail->Param["ID"] = $data["ID"]; $tblDetail->Update(); unset($data["ID"]); What I would like is help from someone to modify this code so that I can insert 2 or more Field Values in the same operation. So as well as inserting the Value "ID" into the Child Table I can also insert the Value "client". Many thanks for reading. Carl.
×
×
  • 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.