sql >> Database >  >> RDS >> Mysql

Hoe json-gegevens te extraheren en in te voegen in mysql php

Doe zoiets als dit..

<?php
$json_data=$_POST['contactdetails'];
$data=json_decode($json_data, true); // Added true flag

// You can access your variables like this..
echo $data['phone number'];// prints "5555"
echo $data['username']; // prints "xfg"

//do your db connection...

// execute your query with those variables...

?>


  1. MariaDB LAST_INSERT_ID() uitgelegd

  2. Mijn programma kan geen waarden opslaan in MySQL met behulp van mysql connector lib in Python

  3. Welke python 3-bibliotheek moet ik gebruiken voor MySQL?

  4. waarom werkt deze mysql-query niet?