Skip to main content

Posts

you can learn with this site toooo it's the best resource online ever www.lynda.com but it's not free ..................................
and you can find many lessons on youtube you can study with them just my advice is find the best one for you the one you can understand the lesson from it
now let's back to the networking study this is the best way to learn networks learning communities from CISCO you can check it with there website and today there is new version of gns3 will be up with this new version you can work with multi user you can check it on there website www.gns3.com  
Many times, while making web pages, we want to repeat certain part of pages in other pages. CakePHP has such facility by which one can extend view in another view and for this, we need not repeat the code again. The  extend()  method is used to extend views in  View  file. This method takes one argument, i.e., the name of the view file with path. Don’t use extension .ctp while providing the name of the View file. Example Make changes in the  config/routes.php  file as shown in the following program. config/routes.php <? php use Cake \Core\Plugin ; use Cake \Routing\RouteBuilder ; use Cake \Routing\Router ; Router :: defaultRouteClass ( 'DashedRoute' ); Router :: scope ( '/' , function ( RouteBuilder $routes ) { $routes -> connect ( 'extend' ,[ 'controller' => 'Extends' , 'action' => 'index' ]); $routes -> fallbacks ( 'DashedRoute' ); }); Plugin :: rout...
The letter “V” in the MVC is for Views. Views are responsible for sending output to user based on request.  View Classes  is a powerful way to speed up the development process. View Templates The View Templates file of CakePHP has default extension . ctp  (CakePHP Template). These templates get data from controller and then render the output so that it can be displayed properly to the user. We can use variables, various control structures in template. Template files are stored in  src/Template/ , in a directory named after the controller that uses the files, and named after the action it corresponds to. For example, the  View  file for the Products controller’s  “view()”  action, would normally be found in src/Template/Products/view.ctp. In short, the name of the controller (ProductsController) is same as the name of the folder (Products) but without the word Controller and name of action/method (view()) of the controller (ProductsControl...