0

このデータに基づいて XML ファイルを生成するにはどうすればよいですか?

$("#savequiz").click(function(){
    var text = "<?xml version=\"1.0\" encoding=\"utf-8\" ?><quiz>";
    // save the general settings
    text += "<title><![CDATA[" + $('input[name="title"]').val() + "]]></title>";
    text += "<time><![CDATA[" + $('input[name="time"]').val() + "]]></time>";

    text += "<singlechoice><![CDATA[" + $('input[name="singlechoice"]').val() + "]]></singlechoice>";
    text += "<multiplechoice><![CDATA[" + $('input[name="multiplechoice"]').val() + "]]></multiplechoice>";
    text += "<nextbutton><![CDATA[" + $('input[name="nextbutton"]').val() + "]]></nextbutton>";
    text += "<prevbutton><![CDATA[" + $('input[name="prevbutton"]').val() + "]]></prevbutton>";
    text += "<finishbutton><![CDATA[" + $('input[name="finishbutton"]').val() + "]]></finishbutton>";
    text += "<startbutton><![CDATA[" + $('input[name="startbutton"]').val() + "]]></startbutton>";
    text += "<reviewbutton><![CDATA[" + $('input[name="reviewbutton"]').val() + "]]></reviewbutton>";
    text += "<resultscreentitle><![CDATA[" + $('input[name="resultscreentitle"]').val() + "]]></resultscreentitle>";
    text += "<resultscreenresultline><![CDATA[" + $('input[name="resultscreenresultline"]').val() + "]]></resultscreenresultline>";
    text += "<welcometext><![CDATA[" + $('textarea[name="welcometext"]').val() + "]]></welcometext>";
    for(var i = 0; i < questions.length; i++) {
        var q = questions[i];
        var answers = q.getAnswers();
        text += "<question><![CDATA[" + q.getQuestion() + "]]>"; 
        for(var n = 0; n < answers.length; n++){
            text += "<answer correct='" + answers[n].getCorrect() + "'>";
            text += "<![CDATA[" + answers[n].getAnswer() + "]]></answer>";  
        };
        text +="</question>";
    };
    text +="</quiz>";

    // save to file:
    $.ajax({
        type: 'POST',
        url: "savequiz.php",
        dataType: 'json',
        data: "filename=" + filename + ".xml" + "&quiz=" + text,
        success: function (text) {
            //console.log(text.errors);
            //console.log(text.feedback);
            if(text.feedback == "saved") respondChangedState(false);
        }
    });

情報を取得して同じフォルダー内のファイルに保存できるようにするには、PHP ファイルはどのようになりますか?

4

1 に答える 1