Добрый день всем,помогите разобраться плиз есть файл terminals.json и MySQL таблица terminale. Нужно импортировать данные из файла в базу данных. сделал: <?php require('db.php'); // reading json file $json = file_get_contents('terminals.json'); //converting json object to php associative array $data = json_decode($json, true); // processing the array of objects foreach ($data as $user) { $agent = $user['agent']; $id = $user['id']; $name = $user['name']; $address = $user['address']; $work_time = $user['work_time']; $lat = $user['lat']; $lng = $user['lng']; $type = $user['type']; $status = $user['status']; } //insert into mysql table $sql = "INSERT INTO terminale(agent, id, name, address, work_time, lat, lng, type, status) VALUES('$agent', '$id', '$name', '$address', '$work_time', '$lat', '$lng', '$type', '$status')"; ?> Ошибка: Notice: Undefined index: address in C:\xampp\htdocs\TEST\Test_Map\json-mysql\json-mysql.php on line 12 Помагите плиз
|