Ezequiel Villarreal

Results 13 issues of Ezequiel Villarreal

Change the first letter of every file and folder inside the folder "classes" to Uppercase to work in Kohana 3.3 properly

Added an extra parameter for conditional comments for IE. More info: http://www.quirksmode.org/css/condcom.html Example: Assets::js('respond', 'media/js/respond.min.js', NULL, FALSE, 'lt IE 9'); Result:

This is my approach to replace strftime which is deprecated in 8.1. Welcome any sugestions. # PR Details Provide a general summary of your changes in the Title above ###...

# PR Details Provide a general summary of your changes in the Title above ### Description Describe your changes in detail ### Related Issue This project only accepts pull requests...

ErrorException [ Deprecated ]: trim(): Passing null to parameter #1 ($string) of type string is deprecated in PHP 8.1 # PR Details Provide a general summary of your changes in...

# PR Details Provide a general summary of your changes in the Title above ### Description Describe your changes in detail ### Related Issue This project only accepts pull requests...

Create HTML tag elements. # PR Details Provide a general summary of your changes in the Title above ### Description Describe your changes in detail ### Related Issue This project...

[This package](https://www.jsdelivr.com/package/npm/jquery-waypoints) doesn't have a [default file](https://www.jsdelivr.com/features#publishing-packages) set. You can set it via `jsdelivr`, `browser`, or `main` field in `package.json`

Get total pages and paginate by page. ``` php $data = DB::select()->from('table'); $data = Paginate::factory($data)->page(1, 10)->execute(); $result = $data->result(); $total_pages = $data->count_pages(); ``` Also, remove mysql_real_escape_string (conflict with mysqli).

Set page number and get total pages.