When using a Fetch( ) function to retrieve the data from a url or other source, you can specify and filter results in your Interactions.
These functions can be naturally generated by the "Code Builder" in the Interactions Manager.
Basic Madl components used in the fetch of data for Interactions include: Before / After / Between.
$t->after( )
Fetches the source before $mystring into variable $t. Usually generated by the code builder when you have
select to filter the fetch results using the "To" field in the builder.
Parameters | |
---|---|
$mystring | A String. |
Return Values | |
---|---|
$mystring | A String. Returns page source or structured data / XML after the "From" filter into variable $t |
$t->fetch("[http://blinkmobile.com.au/mobile-solutions/");] $t->after(" // result;
$t->before( )
Fetches the source before $mystring into variable $t. Usually generated by the code builder when you have select to filter the fetch results using the "To" field in the builder.
Parameters | |
---|---|
$mystring | A String. |
Return Values | |
---|---|
$mystring | A String. Returns page source or structured data / XML before the "To" filter into variable $t |
$t->fetch("[http://blinkmobile.com.au/mobile-solutions/");] $t->before(" // result;
$t->between( )
Fetches the source between $mystring and $mystring2 into variable $t. Usually generated by the code builder when you have select to filter the fetch results using the "To" and "From" fields in the builder.
Parameters | |
---|---|
$mystring | A String. |
$mystring2 | A String |
Return Values | |
---|---|
$mystring | A String. Returns page source or structured data / XML between the "To" and "From" filters into variable $t |
$t->fetch("[http://blinkmobile.com.au/mobile-solutions/");] $t->between(" //