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


PHP Quiz::update方法代码示例

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


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

示例1: Quiz

                 // get from form in createQuizMain
             }
         }
     }
     // 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
开发者ID:Jessicasoon,项目名称:ProjectKentRidgeV2,代码行数:31,代码来源:createQuizEngine.php


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