You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to use this function because I have 2 tables and they're linked each other with columns.
But this functions are not working. Could you please guide me or fix this issue?
Here is my code snippet.
if ( isset($record->fields->Deals) ) {
$deals = $record->fields->Deals;
$cnt = count($record->fields->Deals);
for ( $i = 0; $i < $cnt; $i++ ) {
echo AIRTABLE_TABLE."/".$deals[$i];
$expended = $airtable->getContent( AIRTABLE_TABLE."/".$deals[$i], false, [
'Deal ID' => 'deals'
]);
print_r($expended);
}
}
The text was updated successfully, but these errors were encountered:
I tried to use this function because I have 2 tables and they're linked each other with columns.
But this functions are not working. Could you please guide me or fix this issue?
Here is my code snippet.
if ( isset($record->fields->Deals) ) {
$deals = $record->fields->Deals;
$cnt = count($record->fields->Deals);
for ( $i = 0; $i < $cnt; $i++ ) {
echo AIRTABLE_TABLE."/".$deals[$i];
$expended = $airtable->getContent( AIRTABLE_TABLE."/".$deals[$i], false, [
'Deal ID' => 'deals'
]);
print_r($expended);
}
}
The text was updated successfully, but these errors were encountered: