I am a fan of CakePHP Framework and PHPStorm IDE. But since longs times I tried to setup autocomplete of cakephp MVC structure code in PHPStorm but I failed. But from now I can do that and my development is now being more fast. Let’s try it yourself too!! Inside your Controller inside each script to get Model’s autocomplete suggestion just put the following comments-(i.e in YoursController.php file just put the following comments at the top) In the above code …
Category: Programming
Read articles, tips & tutorials, news and updates on programming language. I write on mostly all languages and try to share my experience with you so you don’t need to spent too much time to find the solution by yourself. Sharing is the true power of knowledge.
As a PHP programmer you need to create excel file with your data by PHP programming language. I have made all the things easy. Follow just two steps and your work will be done!! First create an Excel class in PHP with the following code Then you will include this class file in your working PHP script with PHP Then write the following code. Now run this file and you will see one FileName.xls file will be automatically download. Open …
If you are a PHP coder just leave Dreamweaver. If you are novice website designer Dreamweaver is perfect. Now I can feel that how much bad the Dreamweaver is as an IDE! I prefer PhpStorm as my PHP IDE. Really PHPStorm is a great PHP editor for faster PHP application development. Since 3 years I used Adobe Dreamweaver but now I can be sure that Dreamweaver is such a novice playground. So if you want to be a PHP coder …
If you have ever made any PHP Classes for your work. Then it’s pretty easy to add those classes inside your CakePHP driven application. You need to follow the below steps. Steps 1: You first have to place a class file inside a directory Steps 2: Then open App/Config/bootstrap.php from your CakePHP application directory and write the following codes. //mydir is another directory placed outside of cakephp directory App::build(array( 'GlobalUsers' => array(dirname(CAKE_CORE_INCLUDE_PATH).DS.'mydir'.DS) ), App::REGISTER); It will just add the location …
Since few years I am using various kinds of Concept modelling tools like Mind Map, UML, etc.. But always I found a common question that is why programmers should use Mind Map. My answer is so much straight forward and that is “I prefer Mind Map than any other modelling tools because Mind Map is too much informal than others. It’s perfect for randomized ideas.” As a web programmer basically I need to design concept visually and also I need …