Inline Code Example Here
Hello friends,
I am building a multidimensional array with the following code:
Inline Code Example Here
the example code is
$Questions = array(
1 => array(
'Question' => 'CSS stands for',
'Answers' => array(
'A' => 'Computer Styled Sections',
'B' => 'Cascading Style Sheets',
'C' => 'Crazy Solid Shapes'
),
'CorrectAnswer' => 'A'
),
2 => array(
'Question' => 'Second question',
'Answers' => array(
'A' => 'First answer of Second question',
'B' => 'Second answer Second question',
'C' => 'Third answer Second question'
),
'CorrectAnswer' => 'C'
)
);
please guide me how to store it in mysql