Posts by Elton Almeida • 1 point
3 posts
-
0
votes1
answer121
viewsA: I’m unable to update a field in Cakephp with $this->Model->saveField()
You’re passing the ID(int) of the field line you want to update ?, $data["question"]["parameter"]; matches the model’s primary key ? Example function some($id = null){ //... $this->Model->id =…
-
0
votes1
answer33
viewsA: fpdf problems in cakephp
You are loading the vendor correctly. Vendor follows cakephp conventions ?. App::import('Vendor', 'SomeName', array('file' => 'some.name.php')); View session: Loading Vendors in:…
cakephpanswered Elton Almeida 1 -
0
votes4
answers1748
viewsA: Return php data to Angularjs
Create a role to create the json file function createJson($fileName, $data){ // "a" representa que o arquivo é aberto para ser escrito $fp = fopen($fileName.".json", "a"); // Escreve "exemplo de…