
I honestly don’t fully understand it but I was not enjoying learning what I was reading. That is until I ran into Symfony’s Bundle system. I did begin doing some coding in Symfony and aside from the difficulty of learning a new project’s jargon I was actually having an enjoyable time using Symfony. I spent a few nights reading in bed on my iPad the rest of Symfony’s tutorials and docs and finally felt confident enough to begin coding. Its pleasing to look at, pleasing to use, and I felt a sense of professionalism and polish that made me feel safe to learn more about the code. Although it is said to not judge a book by its cover we humans tend to notice things that are pretty. In addition to the content of the Quick Tour I also found the design of Symfony’s website to be quite appealing. It made sense to me how things were built and how they were used. I tried its Quick Tour and found myself agreeing with the design decisions of the software. I first chose Symfony as the framework to use for my web project. So by using a framework that already provides proper request/response, and routing support it would allow me to focus on designing and developing the app and not worry about the architecture that it would be built on.įrom my research (lots of Google searches and crawling through and around websites) I found the current top PHP frameworks are:
#CODEIGNITER SCREEN READING SOFTWARE FREE#
Although this project is being done during my free time I don’t want its quality to suffer.
#CODEIGNITER SCREEN READING SOFTWARE SOFTWARE#
My reasons included not wanting to reinvent the wheel and the belief that the benefit of open source software is its great community of support.Īnother reason I wanted to use an open source PHP framework was that it provides a tried and true framework complete with features that I otherwise would not have time to code myself.

This wasn’t a hard decision as I use PHP daily for work and have a great deal of strength in the language.Īs I set forward to create my web app I knew I wanted to use a prebuilt PHP web framework. Let us know if you need any further assistance.A week ago I started work on a personal web project using PHP as my programming language of choice. In this case, assets folder is in the same folder with index.php so we can simplly set "assets" And the url is the link to the assets folder in browser. The path is the relative path from MyReport.php to the public assets folder. This will direct KoolReport to copy all css/js to the assets folder so that they can access to. That's why we have the assets settings in the settings() function of MyReport: "assets"=>array( If the koolreport folder is inside application folder of codeigniter, there is no way that those css/js can be accessed due to the rule of CI. Since the KoolReport contains css/js needed to be accessed. Couple of explanation regarding to assets folders: "connectionString"=>"mysql:host=localhost dbname=automaker",Īll done! The KoolReport has been successfully in CodeIgniter project. In the application/controllers/Welcome.php, you do:.In above folder, create two files MyReport.php and.But assume that you have assets folder that I suggested to create. Or if you have public assets folder where css and js file is hold then there is no need.

