Question
What is $data?
Answer
$data( )
array $data ([ mixed $... ] )
Description #
An array where all data captured from a BlinkForm is stored for external processing.
Examples #
Using the output of a BlinkForms form to submit another external form.
$t->fetch("[http://yourwebsite");]
$t->submitForm( "0",
array (
'Address'=> $data['Address'],
'Suburb'=> $data['Suburb'],
'City'=> $data['City'],
'Postcode'=> $data['Postcode']
'ok' => 'Submit',
)
);
Notes #
If you are using the BlinkForms local database, the recordID will not be returned into $data unless you have your custom Step 4 mADL code in the MADL code executed after database change code field.