Your IP : 3.16.137.217


Current Path : /home/lentoinv/getschooljobs.com/
Upload File :
Current File : //home/lentoinv/getschooljobs.com/test2.php

<?php
// Sample JSON data (you should use the full JSON here)
$json = '{"searchParameters":{"q":"Restaurants in Akure","type":"places","engine":"google"},"places":[{"position":1,"title":"Aristo Games and Bistro","address":"Oba Ile Rd, Akure, Nigeria","latitude":7.265278500000001,"longitude":5.2760693,"rating":4.3,"ratingCount":502,"priceLevel":"$$","category":"Restaurant","phoneNumber":"+234 807 234 9444","cid":"7577793021882699214"},{"position":2,"title":"Africana (Tastetables_Africana)","address":"Shammall Mall, Futa South Gate, opp. 2nd Gaint IBK Filling Station, Akure, Ondo, Nigeria","latitude":7.2925255,"longitude":5.1499666,"rating":4.8,"ratingCount":35,"priceLevel":"₦2,000–4,000","category":"Restaurant","phoneNumber":"+234 703 116 8708","cid":"12790160254980332340"},{"position":3,"title":"Iya Saheed Alamala Restaurant","address":"755X 94C, Isolo St, Akure 340110, Ondo, Nigeria","latitude":7.259378399999998,"longitude":5.1983523,"rating":4.3,"ratingCount":158,"priceLevel":"₦2,000–4,000","category":"African restaurant","phoneNumber":"+234 806 811 4477","cid":"5926611382392546140"},{"position":4,"title":"Deluxe shawarma","address":"766G 544, Oba Ile Rd, Akure 340106, Ondo, Nigeria","latitude":7.2603888,"longitude":5.2253281,"rating":4.9,"ratingCount":16,"priceLevel":"₦2,000–4,000","category":"Restaurant","phoneNumber":"+234 906 413 0899","cid":"15573505904467285449"},{"position":5,"title":"Tasty-Up Delicacy Restaurant Ltd.","address":"Estate, Complex 2, Roadblock Area, Along Orita Obele - Ijare Rd, Road, Akure, Ondo, Nigeria","latitude":7.2913507,"longitude":5.1607015999999994,"rating":4.9,"ratingCount":10,"priceLevel":"₦2,000–4,000","category":"Restaurant","phoneNumber":"+234 813 183 0518","cid":"6383255268911422700"},{"position":6,"title":"The Native Arena","address":"Akure, GRA, beside Top quality hotel, Alagbaka, Akure, Nigeria","latitude":7.239141500000001,"longitude":5.207921799999999,"rating":4.1,"ratingCount":64,"category":"Recreation center","phoneNumber":"+234 902 802 8644","website":"https://www.instagram.com/thenativearena/","cid":"11552598044812757998"},{"position":7,"title":"Real Kitchen Bar & Lounge","address":"Block 2c, Along Ilesa, Federal Government Low, Cost Housing Estate, Plot 5 Expressway, Akure, Nigeria","latitude":7.257132500000001,"longitude":5.205790899999999,"rating":4.2,"ratingCount":9,"priceLevel":"₦1–2,000","category":"Restaurant","phoneNumber":"+234 814 095 0141","cid":"12418850536179885344"},{"position":8,"title":"LAH Kitchen And Lounge","address":"FUTA SOUTHGATE, Akure, Ondo, Nigeria","latitude":7.2958262,"longitude":5.1460982,"rating":4.2,"ratingCount":17,"category":"Restaurant","phoneNumber":"+234 810 978 6214","cid":"5251312103846461948"},{"position":9,"title":"Chops Republic","address":"53 Oyemekun Rd, Akure, Nigeria","latitude":7.2563219,"longitude":5.183796699999999,"rating":4.3,"ratingCount":22,"category":"Restaurant","phoneNumber":"+234 703 026 5934","cid":"8547582297505780239"},{"position":10,"title":"Central Café X Club Enclaves","address":"Ola Akadiri St, Akure 340106, Nigeria","latitude":7.2517849,"longitude":5.217618,"rating":4.3,"ratingCount":34,"category":"Lounge","phoneNumber":"+234 703 003 8047","cid":"4509654015433718224"}],"credits":1}';


// Decode JSON
$data = json_decode($json, true);
$places = $data['places'];

// Database connection
$host = 'localhost';
$user = 'root';
$pass = '';
$db = 'businessplaces';

$conn = new mysqli($host, $user, $pass, $db);
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Create table dynamically from first place
$table = 'places';
$sample = $places[0];
$columns = [];

foreach ($sample as $key => $value) {
    if (is_numeric($value)) {
        $type = (strpos($value, '.') !== false) ? "DOUBLE" : "INT";
    } else {
        $type = "TEXT";
    }
    $columns[] = "`$key` $type";
}

$createTableSQL = "CREATE TABLE IF NOT EXISTS `$table` (
    id INT AUTO_INCREMENT PRIMARY KEY,
    " . implode(", ", $columns) . "
)";
if (!$conn->query($createTableSQL)) {
    die("Table creation failed: " . $conn->error);
}

// Insert places using plain queries
foreach ($places as $place) {
    $keys = array_keys($place);
    $values = [];

    foreach ($keys as $key) {
        $val = $conn->real_escape_string((string) $place[$key]);
        $values[] = "'" . $val . "'";
    }

    $insertSQL = "INSERT INTO `$table` (`" . implode("`, `", $keys) . "`) VALUES (" . implode(", ", $values) . ")";
    
    if (!$conn->query($insertSQL)) {
        echo "Insert failed for '{$place['title']}': " . $conn->error . "<br>";
    }
}

echo "Done inserting " . count($places) . " places.";
$conn->close();
?>

?>