-2
 $record = array (
      0 => 
      (object) array(
         'n_kod' => 700847,
         'wb_export' => NULL,
      ),
    );  

How to output the value of the wb_export field ?

Alex
  • 53
  • 4

1 Answers1

2

Here is how you can output the value of wb_export

echo $record[0]->wb_export; 
Osama.Jazz
  • 31
  • 3