当前位置: 首页>>代码示例>>PHP>>正文


PHP Quiz::createQuiz方法代码示例

本文整理汇总了PHP中Quiz::createQuiz方法的典型用法代码示例。如果您正苦于以下问题:PHP Quiz::createQuiz方法的具体用法?PHP Quiz::createQuiz怎么用?PHP Quiz::createQuiz使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Quiz的用法示例。


在下文中一共展示了Quiz::createQuiz方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Quiz

     // save the data from step 1
     $quiz_picture = $_POST['result_picture_0'] != "" ? $_POST['result_picture_0'] : "none.gif";
     if (isset($_POST['id'])) {
         $quiz = new Quiz($_POST['id']);
         // Modified on 20 Oct by Hien for getting type and display_mode from the database
         // for test_simple to skip the result step
         $query = sprintf("SELECT fk_quiz_type, display_mode FROM q_quizzes WHERE quiz_id = %d", GetSQLValueString($_POST['id'], "int"));
         $getQuery = mysql_query($query, $quizroo) or die(mysql_error());
         $row_getQuery = mysql_fetch_assoc($getQuery);
         $mode = $row_getQuery['display_mode'];
         $type = $row_getQuery['fk_quiz_type'];
         $quiz_id = $quiz->update($_POST['quiz_title'], $_POST['quiz_description'], $_POST['quiz_cat'], $quiz_picture, $member->id, $mode, $type);
     } else {
         $quiz = new Quiz();
         //function createQuiz($title, $description, $cat, $picture, $member_id, $key, $display_mode, $fk_quiz_type) from quiz.php
         $quiz_id = $quiz->createQuiz($_POST['quiz_title'], $_POST['quiz_description'], $_POST['quiz_cat'], $quiz_picture, $member->id, $key, $mode, $type);
     }
     // direct them to step 3 if the quiz is of test type and simple display mode, else direct to step 2
     if ($type == "1" && $mode == "test_simple") {
         header("Location: ../webroot/createQuiz.php?step=3&id=" . $quiz_id);
     } else {
         header("Location: ../webroot/createQuiz.php?step=2&id=" . $quiz_id);
     }
     break;
 case 2:
     // save the quiz results
     // get the id from the form
     $quiz_id = $_POST['id'];
     //***********************************************ADD BY LIEN************************************************//
     $queryMode = sprintf("SELECT display_mode FROM q_quizzes WHERE quiz_id = %d", $quiz_id);
     $resultMode = mysql_query($queryMode, $quizroo) or die(mysql_error());
开发者ID:Jessicasoon,项目名称:ProjectKentRidgeV2,代码行数:31,代码来源:createQuizEngine.php

示例2: Quiz

                        echo $quiz_picture;
                        ?>
</td>
  </tr>
   <tr>
    <td><span class="style15">Display mode:</span></td>
    <td><?php 
                        echo $display_mode;
                        ?>
</td>
  </tr>
  <?php 
                        //create quiz
                        $quiz = new Quiz();
                        //get the quiz_id here to use for inserting questions
                        $quiz_id = $quiz->createQuiz($title, $des, $cat, $quiz_picture, $memberid, 'Admin', $display_mode, 2);
                    }
                    //check if the question is null. If not, insert into database.
                    if ($question != null) {
                        ?>
  <tr bgcolor="#FFCCFF">
    <td><span class="style5">Question:</span></td>
    <td><?php 
                        echo $question;
                        ?>
</td>
  </tr>
  <?php 
                        $question_id = $quiz->addQuestion($question, $memberid);
                    }
                    //check if the option is null. If not, insert into database with reference
开发者ID:Jessicasoon,项目名称:ProjectKentRidgeV2,代码行数:31,代码来源:uploadQuiz.php


注:本文中的Quiz::createQuiz方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。