tinymvc-php
tinymvc-php copied to clipboard
Automatically exported from code.google.com/p/tinymvc-php
Hello! Happy New Year. Can I open a controller in a Linux console? I need to get the following: > php index.php/hello/world/
Hello I have an issue with TinyMVC (I must have an error in my model, but suddenly impossible to debug) : `Fatal error: Uncaught TypeError: Argument 1 passed to TinyMVC_ExceptionHandler::handleException()...
Hello! I'm writing a pagination plugin and I'm having a problem. `$this->load->library('pagination','pag');` `$this->pag(30);` file tinymvc_library_pagination.php `class TinyMVC_Library_Pagination { var $total_count; function __construct($total_count) { } }` Getting error: > Missing argument...
Show default method if requested method was not found
Looked through your code I noticed calling the controller in two different ways. First in tinymvc_model you do it this way ``` tmvc::instance()->controller->load->database($poolname); ``` But in tinymvc_load you do it...
Notice that PDO::FETCH_CLASS wasn't supported by the TinyMVC_PDO class $fetch_mode. By adding $class and $ctorargs arguments on all method using $fetch_mode. Plus side is that PDO::FETCH_INTO now works aswell Example:...