hanze/iwa-panda2

Controller/storeData/storeData.php in datatowebsite
Repositories | Summary | Log | Files | README.md

storeData.php (545B) download


 1<?php
 2//function storeData($dataArray): void
 3//{
 4//    $db = new mysqli("86.92.67.21", "friedel", "hailiwa", "panda");
 5//    $query = "INSERT INTO retrieve_zoos (city, wind_chill, date) VALUES (?, ?, ?)";
 6//    $stmt = mysqli_prepare($db, $query);
 7//
 8//    foreach ($dataArray as $data) {
 9//        $city = $data->city;
10//        $windchill = $data->windchill;
11//        $date = $data->date;
12//
13//        $stmt->bind_param("sis", $city, $windchill, $date);
14//        $stmt->execute();
15//    }
16//
17//    $stmt->close();
18//    $db->close();
19//}
20?>