how to store repeater data in 1 table, I get an error:Array to string conversion
You are trying to retrieve the value of client_id from inside the repeater item.
$get() is relative to the current repeater item, so $get('client_id') is looking for $get('repeater.item1.client_id').
You can use ../ to go up a level in the data structure, so $get('../client_id') is $get('repeater.client_id') and $get('../../client_id') is $get('client_id')
You are trying to retrieve the value of client_id from inside the repeater item.
$get() is relative to the current repeater item, so $get('client_id') is looking for $get('repeater.item1.client_id').
You can use ../ to go up a level in the data structure, so $get('../client_id') is $get('repeater.client_id') and $get('../../client_id') is $get('client_id')
how to store repeater data in 1 table, I get an error:Array to string conversion
in this case I have succeeded,
but how to retrieve the school_id on selected tabs 1,
then on tabs 2 selected teacher_id will filter from the school_id value