Your IP : 216.73.217.117


Current Path : /var/www/cesa.co.za/php/includes/
Upload File :
Current File : /var/www/cesa.co.za/php/includes/ADecQuestions.php

<?php

/*
 * Contact otto@igotafrica.com for details
 */

include_once('BaseTableClass.php');

/**
 * Control the  ADecQuestionnaires table
 *
 * @author Otto Saayman
 */
class ADecQuestions extends BaseTableClass
{

    public function findByQId($qid)
    {

        if (strlen($qid) <= 0) {
            return array();
        }

        $sql = "SELECT * FROM ADQuestions adq "
            . "WHERE adq.ADQID=" . $qid . " ORDER BY SectionNum, QuestionNum";

        echo $sql . '<br />';

        return $this->sqlf->getAll($sql);
    }
}