Novice how PHP store and query string data for MySQL

Source: Internet
Author: User
Novice ask PHP how to store and query string data mysql?
I have this kind of data.
Monday
Morning: Chinese
Afternoon: Math

Tuesday
Morning: English
Afternoon: Physical

Wednesday
Morning: Sports
Afternoon: Music

Thursday
Morning: Chemistry
Afternoon: Art

Friday
Morning: History
Afternoon: Politics


How to store a string in a field in a table. How do you write grammar? How do I query after storage? How do I update the morning and afternoon values?

I remember reading such an article before,
Similar to
[{Monday: Chinese, Mathematics},{Tuesday: English, Physics},]
This way, but specifically I do not know how to write, grammar and how.

Requirements: Ability to query and update.

Ask the Prawn to guide the maze. Or give me a related article that I could learn on my own.
------Solution--------------------

$arr = Array (
' Monday ' + ' Chinese, maths ',
' Tuesday ' = ' English, physics ',
' Wednesday ' = ' Sports, music ',
' Thursday ' = ' chemistry, art ',
' Friday ' = ' history, Politics '
);
$result = Json_encode ($arr);
echo $result;//Save As Database
Remove from Database
$arr = Json_decode ($result, true);
Print_r ($arr);
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.