當前位置: 首頁>>代碼示例>>PHP>>正文


PHP quiz::createQuiz方法代碼示例

本文整理匯總了PHP中quiz::createQuiz方法的典型用法代碼示例。如果您正苦於以下問題:PHP quiz::createQuiz方法的具體用法?PHP quiz::createQuiz怎麽用?PHP quiz::createQuiz使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在quiz的用法示例。


在下文中一共展示了quiz::createQuiz方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: quiz

<?php

//$handle=new mysqli('localhost','root','','sygma');
require "class.quiz.php";
$q = new quiz();
$q->createQuiz($_POST);
header('create_question.php');
開發者ID:Elvin-dsouza,項目名稱:sygma2k16,代碼行數:7,代碼來源:quiz-reg.php

示例2: classes

 */
if ($_SESSION['username'] != "") {
    require_once 'web/core/navigation.php';
    if ($_SESSION['utype'] >= '5') {
        // get and initiate the course class to access the functions
        require_once 'src/core/controller/classes.php';
        $ObjClass = new classes();
        require_once 'src/core/controller/quiz.php';
        $ObjQuiz = new quiz();
        // set class id for form and links
        if ($_POST['classid'] != "") {
            $classid = $_POST['classid'];
        } else {
            $classid = $d;
        }
        if ($_POST['y'] == 'quiz' && $_POST['z'] == 'create' && $_POST['action'] == "save") {
            $createContent = $ObjQuiz->createQuiz($_POST['quizTitle'], $_POST['quizState'], $_POST['quizDescription'], $ObjClass->convertUUIDToClassID($_POST['classid']));
            if ($createContent !== false) {
                $responseMsg = "Your quiz has been created successfully";
            } else {
                $responseMsg = "Could not create your quiz at this time - something went wrong, sorry";
            }
        }
        // create the view for coursek information
        require_once 'web/core/quiz/create.php';
    } else {
        require_once 'web/core/security/insufficientrights.php';
    }
} else {
    require_once 'web/core/login/index.php';
}
開發者ID:TohuMuna,項目名稱:akonga,代碼行數:31,代碼來源:create.php


注:本文中的quiz::createQuiz方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。