Jump to content

how to insert this data into mysql using php


Virendra

Recommended Posts

Array ( [data] => Array ( [0] => Array ( [latitude] => 22.934566 [longitude] => 79.08728 [type] => county [distance] => 44.328 [name] => Narsinghpur [number] => [postal_code] => [street] => [confidence] => 0.5 [region] => Madhya Pradesh [region_code] => MP [county] => Narsinghpur [locality] => [administrative_area] => [neighbourhood] => [country] => India [country_code] => IND [continent] => Asia [label] => Narsinghpur, India ) ) )

Please Help ! Thanks in Advance

Link to comment
Share on other sites

This should get you started (if you haven't already) ...

$array = array ( 
    'data' => array ( 
        '0' => array ( 
            'latitude' => 22.934566, 
            'longitude' => 79.08728, 
            'type' => 'county', 
            'distance' => 44.328, 
            'name' => 'Narsinghpur', 
            'number' => '',
            'postal_code' => '',
            'street' => '',
            'confidence' => 0.5, 
            'region' => 'Madhya Pradesh', 
            'region_code' => 'MP', 
            'county' => 'Narsinghpur', 
            'locality' => '',
            'administrative_area' => '',
            'neighbourhood' => '', 
            'country' => 'India', 
            'country_code' => 'IND', 
            'continent' => 'Asia', 
            'label' => 'Narsinghpur, India' 
            ) 
        ) 
    );
    
foreach ($array['data'] as $record) {
    // insert $record
}

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.