I m editing the script phppennyauctions and I would create new page that show the invoices (I ve created a new tablet invoices in the DB).
我将控制器、行政/发票和模式发票贴上。 网址:www.un.org
我怎么办?
<?php
class InvoicesController extends AppController {
var $name = Invoices ;
var $helpers = array( Html , Form );
function beforeFilter(){
parent::beforeFilter();
}
function admin_index() {
$this->set( invoices , $this->paginate());
}
function admin_add() {
$this->set( invoices , $this->paginate());
}
} ?>