Code Test

Posted by on Sat, 1 Mar 2008

I am testing out the code boxes on my site, I want to get them styled all nice, along with other things on my site.

class qodModel extends Model { var $totalQuestions = 403; var $currentQuestionNumber = 0; function Blogmodel() { parent::Model(); } function getDateNumber() { $this->load->helper('date'); $datestring = "%j-%y-%w"; $time = time(); $dateArray = explode("-",mdate($datestring, $time)); $seed = $dateArray[0] * $dateArray[1] + $dateArray[2]; return $seed; } function getCurrentQuestionNumber() { srand($this->getDateNumber()); $randVal = rand(); $this->currentQuestionNumber = $randVal % $this->totalQuestions; return $this->currentQuestionNumber; } } Technorati Profile

Copyright 2012 A.J. Cates - Valid HTML5 - Powered by Wolf CMS