CakePHP 2.5.4 Basics Tutorial for Beginners - Blog Application - 12 - Find by ID and GET request

preview_player
Показать описание
Learn how to find by id in CakePHP so that you can find any specific row in a table by it's id (primary key). Also learn how to handle GET requests in CakePHP.

***

Рекомендации по теме
Комментарии
Автор

With a LAMP system the HtmlHelper is case sensitive and you need to have: $this->Html->link(... Took me a while to figure out. I have been enjoying the tutorials!

uttbigal
Автор

SourcewareInfo Why should their be "View" in the URL? When I coded in Ruby on Rails, there was no "view" word in URL, it is better to just show topic/$id. How can this be achieved?

faz
Автор

How do we SEARCH a record in the DB using a search box ?
Please can you help with this? 

rohan
Автор

Error: Cannot access empty property
File:
Line: 856

yogeshyadav
Автор

if you get Error: HTMLHelper could not be found. then you must change 
$this->HTML->link  
to
$this->Html->link

TheFleabite