Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Javascript deprecated
Post: RE: Javascript deprecated

"I decided to try CI because I was having difficulty with the highly rated Laravel. There, I found it is just getting into so much detail that it is really no longer a light-weight framework, but a go...
12,447 Views
12 Replies
11-06-2017, 12:48 PM
krystian2160
    Thread: Product Database Project
Post: RE: Product Database Project

Yes, it is suitable, as every php's framework. It is just a tool that helps. Read the documentation. Look on all available helpers and drivers, look around, think, and start learning/studying and th...
4,437 Views
2 Replies
10-04-2017, 09:06 AM
krystian2160
    Thread: CI for Accounting
Post: RE: CI for Accounting

Learn PHP, Learn CI, Learn accounting and algorythms, Xd. Your post is just like... Xd. You didn't even type anything specific. Just learn. Study. Think. Code things. Practise
23,604 Views
18 Replies
09-30-2017, 01:31 AM
krystian2160
    Thread: Top Benefits of Using Codeigniter Development
Post: RE: Top Benefits of Using Codeigniter Development

Exactly the same to say about Laravel but better. Except point 2. Not the easiest way to setup and begin, and do only few most simple tasks, but everything above that, it is easiest with Lara. I thin...
20,073 Views
11 Replies
09-30-2017, 01:29 AM
krystian2160
    Thread: CodeIgniter bests should stay as they are vs Laravel
Post: RE: CodeIgniter bests should stay as they are vs L...

rtenny, "Eloquent" doesn't have to mean something with class, programming. But for me it has something towards functionality. You know, programming would be more boring without it. Colors in IDE isn...
31,350 Views
15 Replies
09-08-2017, 11:37 AM
krystian2160
    Thread: CodeIgniter bests should stay as they are vs Laravel
Post: RE: CodeIgniter bests should stay as they are vs L...

There is no need to be a bit weird. Just don't be closed to this or that, to new things and so on. And for me it isn't like whale or shark. Toyota or Ford. It is something else. You can l...
31,350 Views
15 Replies
09-07-2017, 01:46 PM
krystian2160
    Thread: CodeIgniter bests should stay as they are vs Laravel
Post: RE: CodeIgniter bests should stay as they are vs L...

You can love both :). Don't be closed PaulID. :D
31,350 Views
15 Replies
09-07-2017, 11:26 AM
krystian2160
    Thread: CodeIgniter bests should stay as they are vs Laravel
Post: RE: CodeIgniter bests should stay as they are vs L...

Personally I think Eloquent is great name. And blame, hm, you know, but It is okay. Besides you doesn't have to name templates with "blade". It just extend your funcitonality. But Eloquent is 10...
31,350 Views
15 Replies
09-07-2017, 10:17 AM
krystian2160
    Thread: CodeIgniter bests should stay as they are vs Laravel
Post: CodeIgniter bests should stay as they are vs Larav...

First I learnt CodeIgniter, built project on it. Then took Laravel for studying, built another project on Laravel this time. I just wanna share my thoughts about CodeIgniter vs Laravel, especially Co...
31,350 Views
15 Replies
09-02-2017, 11:55 AM
krystian2160
    Thread: CI4 should keep Models are not required as CI3
Post: RE: CI4 should keep Models are not required as CI3

By the way laravel doesn't require you to use models. you don't know laravel I see.
3,976 Views
3 Replies
08-28-2017, 05:14 AM
krystian2160
    Thread: CI4 should keep Models are not required as CI3
Post: RE: CI4 should keep Models are not required as CI3

Models are good. You should learn them and use them. They because they are good and improve many things, code, clearity, workflow etc. Don't stay away of these things. Get interested. Learn. Work w...
3,976 Views
3 Replies
08-28-2017, 04:28 AM
krystian2160
    Thread: Sugesstion to CodeIgniter 4 future documentation
Post: RE: Sugesstion to CodeIgniter 4 future documentati...

Nice :). That's nice page :). But I think it will be great to have page about not upgrading project from 3 to 4 but about learning stuff from 4 that's new or has changed from 3. Obviously all document...
5,994 Views
5 Replies
07-29-2017, 01:37 AM
krystian2160
    Thread: Sugesstion to CodeIgniter 4 future documentation
Post: RE: Sugesstion to CodeIgniter 4 future documentati...

Yes, something like this :D but written with love and with description of changes in this log :D. Like on Bootstrap 4 I gave link to :)
5,994 Views
5 Replies
07-28-2017, 12:04 PM
krystian2160
  Heart Thread: Sugesstion to CodeIgniter 4 future documentation
Post: Sugesstion to CodeIgniter 4 future documentation

I would be nice to have something like Bootstrap's 4 ;Migration; Page :D. https://v4-alpha.getbootstrap.com/migration/ (https://v4-alpha.getbootstrap.com/migration/) Where everything is listed, ...
5,994 Views
5 Replies
07-28-2017, 04:36 AM
krystian2160
    Thread: I cannot use result() or result_array() on a variable that has been passed to the vie
Post: RE: I cannot use result() or result_array() on a v...

Do $this->load->view('_comments', array('datax' => $datax)); and in view var_dump($datax); will work. read the documentation :)
3,893 Views
3 Replies
07-12-2017, 12:32 PM
krystian2160
    Thread: CodeIgniter Cache - Naming files and turning md5 off
Post: CodeIgniter Cache - Naming files and turning md5 o...

Page Caching I heard that Quote: -- they are hash md5($uri); of your URI. so its similar to controllername+function name but in a hashed format. -- Why codeigniter hashes files named  Cod...
1,464 Views
0 Replies
07-12-2017, 03:16 AM
krystian2160
  Exclamation Thread: Sometimes without reason - Class CI_Session_files_driver
Post: Sometimes without reason - Class CI_Session_files_...

PHP Code: -- A PHP Error was encountered Severity: Error Message: Class CI_Session_files_driver contains 1 abstract method and must therefore be declared abstract or implement the remaining methods...
4,535 Views
2 Replies
07-07-2017, 12:09 PM
krystian2160
    Thread: Delete one cache file with cache driver
Post: RE: Delete one cache file with cache driver

Thank you :) Now I understand
7,364 Views
5 Replies
07-07-2017, 05:15 AM
krystian2160
    Thread: Delete one cache file with cache driver
Post: RE: Delete one cache file with cache driver

I do not have any cache configuration. Just `$this->output->cache(3600);` in controller's constructor
7,364 Views
5 Replies
07-07-2017, 04:55 AM
krystian2160
    Thread: Delete one cache file with cache driver
Post: Delete one cache file with cache driver

I can delete one cache file by PHP Code: -- $this->output->delete_cache('dfgdfg'); -- But why this two doesn't work? PHP Code: -- $this->load->driver('cache'); if ( $this->cache->delete(...
7,364 Views
5 Replies
07-07-2017, 04:25 AM
krystian2160

Theme © iAndrew 2016 - Forum software by © MyBB