21 lines
306 B
PHP
21 lines
306 B
PHP
<?php
|
|
|
|
namespace App\Model;
|
|
use CodeIgniter\Model;
|
|
|
|
class MathsModel extends Model
|
|
{
|
|
|
|
|
|
protected function initialize()
|
|
{
|
|
parent::initialize(); // TODO: Change the autogenerated stub
|
|
}
|
|
|
|
public function PageData($printableCode){
|
|
|
|
|
|
return '93939393939'.$printableCode;
|
|
}
|
|
|
|
} |