Hello i am new here also new in php
i have problem with my code
$seller_id = $listings[]['Account_ID'];
$seller_info = $rlAccount -> getProfileInfo( $seller_id );
$rlSmarty -> assign_by_ref( 'seller_info', $seller_info );
i get this error Fatal error: Cannot use [] for reading in
the array is
Array (
[0] => Array
(
[name] => Automobiles
[ID] => 1
[Account_ID] => 0
)
[1] => Array
(
[name] => Automobiles
[ID] => 2
[Account_ID] => 1
)
)
.
.
.
Please help how i can fix it