18/05/2012 3:27pm

PHP | Problem -


<?php

class RightBarPage extends Page {

static $db = array(
"RightBarTitle" => "Varchar(100)",
"RightBarContent" => "HTMLText"
);
public static $has_one = array(
);

}
class RightBarPage_Controller extends Page_Controller {



}


1 Comments Solutions

18/05/2012 3:30pm

PHP | Problem - Anonymous


class RightBarPage extends Page {

static $db = array(
"RightBarTitle" => "Varchar(100)",
"RightBarContent" => "HTMLText"
);

}

Post Comment