How can I import a jsonp file in a MySQL table using PHP in the most easiest way without configuring the table?
Better if there is any existing system.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you could just get the json string and do
serialize(json_decode($jsonstring))and store that in a single column of your database to preserve the entire array or object and its structure then to use it from a query you’d just dounserialize()to convert it back to its original state.