Created At: 2026-06-14T15:55:39Z
Completed At: 2026-06-14T15:55:39Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 3856
Total Bytes: 159351
Showing lines 501 to 520
The following code has been modified to include a line number before every line, in the format: <line_number>: <original_line>. Please note that any changes targeting the original code should remove the line number, colon, and leading space.
501:                     image_monthly_graph_url = EXCLUDED.image_monthly_graph_url,
502:                     updated_at = CURRENT_TIMESTAMP
503:             ");
504: 
505:             $stmt->execute([
506:                 ':location_id' => $location_id,
507:                 ':variable_id' => $variable_id,
508:                 ':description' => $description,
509:                 ':image_annual' => $imageAnnual,
510:                 ':image_trend' => $imageTrend,
511:                 ':image_time_series' => $imageTimeSeries,
512:                 ':image_monthly_map' => $imageMonthlyMap,
513:                 ':image_monthly_graph' => $imageMonthlyGraph
514:             ]);
515: 
516:             echo json_encode(['success' => true, 'message' => 'Data Historical berhasil disimpan!']);
517:             exit;
518:         }
519: 
520:         // 3. Ambil data Future Climate
The above content does NOT show the entire file contents. If you need to view any lines of the file which were not shown to complete your task, call this tool again to view those lines.
